2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-05 00:46:08 +00:00

Fix build with new lib_ui commits.

This commit is contained in:
John Preston
2020-04-13 12:34:51 +04:00
parent 1d613995db
commit f5aba5a907
7 changed files with 12 additions and 14 deletions

View File

@@ -238,7 +238,7 @@ void ShowErrorToast(const QString &text) {
auto config = Ui::Toast::Config();
config.multiline = true;
config.minWidth = st::msgMinWidth;
config.text = text;
config.text = { text };
Ui::Toast::Show(config);
}