2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Added spoiler support to input field.

This commit is contained in:
23rd
2021-12-19 17:07:57 +03:00
committed by John Preston
parent 52699ccfc2
commit 90dedb7b70
5 changed files with 11 additions and 2 deletions

View File

@@ -315,6 +315,10 @@ QString UiIntegration::phraseFormattingMonospace() {
return tr::lng_menu_formatting_monospace(tr::now);
}
QString UiIntegration::phraseFormattingSpoiler() {
return tr::lng_menu_formatting_spoiler(tr::now);
}
bool OpenGLLastCheckFailed() {
return QFile::exists(OpenGLCheckFilePath());
}

View File

@@ -70,6 +70,7 @@ public:
QString phraseFormattingUnderline() override;
QString phraseFormattingStrikeOut() override;
QString phraseFormattingMonospace() override;
QString phraseFormattingSpoiler() override;
};