diff options
author | cuoco <cc@mail.com> | 2022-12-22 22:42:41 +0100 |
---|---|---|
committer | cuoco <cc@mail.com> | 2022-12-22 22:42:41 +0100 |
commit | 5c702b945548722771aded05fd591f1dcbedefc0 (patch) | |
tree | 2a09e716be94cb18366c0bad61a30cdee7558dd6 /src/gui | |
parent | 038300e4bb602d07306422cd9fa5ff635b5f9477 (diff) | |
download | plus-5c702b945548722771aded05fd591f1dcbedefc0.tar.gz plus-5c702b945548722771aded05fd591f1dcbedefc0.tar.bz2 plus-5c702b945548722771aded05fd591f1dcbedefc0.tar.xz plus-5c702b945548722771aded05fd591f1dcbedefc0.zip |
linting
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/popups/popupmenu.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index c0cb6ca01..bbe8358fc 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -415,8 +415,12 @@ void PopupMenu::showPopup(const int x, const int y, const Being *const being) // TRANSLATORS: add monster to ignore list _("Add to ignore list")); - if (isAllowCommand(ServerCommandType::mobinfo)){ - mBrowserBox->addRow("/monsterinfo 'BEINGSUBTYPEID'", _("Monster info")); + if (isAllowCommand(ServerCommandType::mobinfo)) + { + mBrowserBox->addRow("/monsterinfo 'BEINGSUBTYPEID'", + // TRANSLATORS: popup menu item + // TRANSLATORS: show monster info + _("Monster info")); } } } |