diff options
| author | George Hazan <george.hazan@gmail.com> | 2025-01-04 18:24:23 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2025-01-04 18:24:23 +0300 |
| commit | 6efe10975af20be0ae7bd03372796124007d2558 (patch) | |
| tree | 205e6600b4a5e173969b32f7c08cef4579eb8b06 | |
| parent | a330def54d05bdf090f57829113c0079120e38fb (diff) | |
fixes #4828 (NewStory: скрыть кнопку "Фильтр")
| -rw-r--r-- | plugins/NewStory/src/history_dlg.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_dlg.cpp b/plugins/NewStory/src/history_dlg.cpp index 08351bbd81..6a7d508b73 100644 --- a/plugins/NewStory/src/history_dlg.cpp +++ b/plugins/NewStory/src/history_dlg.cpp @@ -433,7 +433,7 @@ public: m_toolbar.push_back(Button(btnTimeTree));
m_toolbar.push_back(Button(btnBookmarks));
m_toolbar.push_back(Button(btnSearch));
- m_toolbar.push_back(Button(btnFilter));
+ // m_toolbar.push_back(Button(btnFilter));
m_toolbar.push_back(Button(btnCalendar, Button::SPACED));
m_toolbar.push_back(Button(btnCopy));
m_toolbar.push_back(Button(btnDelete));
@@ -489,6 +489,7 @@ public: // filterbar
btnFilter.MakePush();
+ btnFilter.Hide();
btnTimeTree.MakePush();
if (m_dwOptions & WND_OPT_TIMETREE)
|
