diff options
author | George Hazan <ghazan@miranda.im> | 2022-09-24 20:48:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-09-24 20:50:01 +0300 |
commit | 87688568055a37961b1fa9cfe31cfaef064d3e1c (patch) | |
tree | 6bdef487722a687f84cc1d74de439fcabb240a9a /plugins/Scriver/src | |
parent | 4c610be444c52c9734681d97f8368bd6eb693da7 (diff) |
some common chat options exported directly from the core
Diffstat (limited to 'plugins/Scriver/src')
-rw-r--r-- | plugins/Scriver/src/chat_main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/chat_main.cpp b/plugins/Scriver/src/chat_main.cpp index 69b04f0207..4538572531 100644 --- a/plugins/Scriver/src/chat_main.cpp +++ b/plugins/Scriver/src/chat_main.cpp @@ -48,7 +48,7 @@ static void OnFlashHighlight(SESSION_INFO *si, int bInactive) si->pDlg->FixTabIcons();
si->pDlg->UpdateTitle();
- if (g_Settings.bFlashWindowHighlight)
+ if (Chat::bFlashWindowHighlight)
si->pDlg->StartFlashing();
}
@@ -60,7 +60,7 @@ static void OnFlashWindow(SESSION_INFO *si, int bInactive) si->pDlg->FixTabIcons();
si->pDlg->UpdateTitle();
- if (g_Settings.bFlashWindow)
+ if (Chat::bFlashWindow)
si->pDlg->StartFlashing();
}
|