diff options
author | George Hazan <george.hazan@gmail.com> | 2024-02-07 16:49:29 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-02-07 16:49:29 +0300 |
commit | fe1a02e224802b0ddcc2945eb42d950695d044a3 (patch) | |
tree | 43fdb0ce950886d84dec1621ab46b2d0a53af66f /plugins/NewStory | |
parent | 4241688a550499b67c202767440f1775e50eef91 (diff) |
fixes #4176 (NewStory: не скрывать пункт меню "Удалить" для чужих сообщений)
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/history_menus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_menus.cpp b/plugins/NewStory/src/history_menus.cpp index 16600a7999..747f8e4f8e 100644 --- a/plugins/NewStory/src/history_menus.cpp +++ b/plugins/NewStory/src/history_menus.cpp @@ -78,7 +78,7 @@ HMENU NSMenu_Build(NewstoryListData *data, ItemData *item) } Menu_ShowItem(hmiEdit, bShowEventActions && bEditable); - Menu_ShowItem(hmiDelete, bShowEventActions && bEditable); + Menu_ShowItem(hmiDelete, bShowEventActions); Menu_ShowItem(hmiBookmark, bShowEventActions); HMENU hMenu = CreatePopupMenu(); |