mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-02 07:35:12 +00:00
Remove emoji from custom admin ranks.
This commit is contained in:
@@ -936,6 +936,20 @@ const InstantReplaces &InstantReplaces::Default() {
|
||||
return result;
|
||||
}
|
||||
|
||||
const InstantReplaces &InstantReplaces::TextOnly() {
|
||||
static const auto result = [] {
|
||||
auto result = InstantReplaces();
|
||||
result.add("--", QString(1, QChar(8212)));
|
||||
result.add("<<", QString(1, QChar(171)));
|
||||
result.add(">>", QString(1, QChar(187)));
|
||||
result.add(
|
||||
":shrug:",
|
||||
QChar(175) + QString("\\_(") + QChar(12484) + ")_/" + QChar(175));
|
||||
return result;
|
||||
}();
|
||||
return result;
|
||||
}
|
||||
|
||||
FlatInput::FlatInput(
|
||||
QWidget *parent,
|
||||
const style::FlatInput &st,
|
||||
|
Reference in New Issue
Block a user