diff options
author | George Hazan <george.hazan@gmail.com> | 2024-04-29 20:10:53 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-04-29 20:10:57 +0300 |
commit | a1298d902d4d684e3690f5b2cb3756b8e9eb9e03 (patch) | |
tree | 55a7f1811a7d677201df345ed06345187258b534 /plugins/MenuItemEx/src | |
parent | cd6f10dda24e12dfbd108a4cca31608bfedc2ed4 (diff) |
fixes #4383 (MenuEx: remove "Show alpha icons" option)
Diffstat (limited to 'plugins/MenuItemEx/src')
-rw-r--r-- | plugins/MenuItemEx/src/options.cpp | 4 | ||||
-rw-r--r-- | plugins/MenuItemEx/src/resource.h | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/plugins/MenuItemEx/src/options.cpp b/plugins/MenuItemEx/src/options.cpp index b17894b790..8cd3b1aba0 100644 --- a/plugins/MenuItemEx/src/options.cpp +++ b/plugins/MenuItemEx/src/options.cpp @@ -10,7 +10,6 @@ static const checkboxes[] = { { IDC_STATUSMSG, VF_STAT },
{ IDC_COPYIP, VF_CIP },
{ IDC_COPYMIRVER, VF_CMV },
- { IDC_SHOWALPHAICONS, VF_SAI },
{ IDC_HIDE, VF_HFL },
{ IDC_IGNORE, VF_IGN },
{ IDC_IGNOREHIDE, VF_IGNH },
@@ -26,14 +25,13 @@ class COptDialog : public CDlgBase {
uint32_t m_flags;
- CCtrlCheck m_chkAlpha, m_chkHide, m_chkIgnore, m_chkProtos, m_chkRecvFiles, m_chkCopyIP, m_chkCopyMirver, m_chkStatusMsg,
+ CCtrlCheck m_chkHide, m_chkIgnore, m_chkProtos, m_chkRecvFiles, m_chkCopyIP, m_chkCopyMirver, m_chkStatusMsg,
m_chkSMName, m_chkCopyID, m_chkCopyIDName, m_chkShowID, m_chkTrimID, m_chkIgnoreHide;
CCtrlLabel m_lblHint;
public:
COptDialog() :
CDlgBase(g_plugin, IDD_OPTIONS),
- m_chkAlpha(this, IDC_SHOWALPHAICONS),
m_chkHide(this, IDC_HIDE),
m_chkIgnore(this, IDC_IGNORE),
m_chkProtos(this, IDC_PROTOS),
diff --git a/plugins/MenuItemEx/src/resource.h b/plugins/MenuItemEx/src/resource.h index a97b5fa080..0c64569c8c 100644 --- a/plugins/MenuItemEx/src/resource.h +++ b/plugins/MenuItemEx/src/resource.h @@ -25,7 +25,6 @@ #define IDC_STATUSMSG 1010
#define IDC_COPYIDNAME 1011
#define IDC_COPYIP 1012
-#define IDC_SHOWALPHAICONS 1013
#define IDC_SMNAME 1014
#define IDC_COPYMIRVER 1015
#define IDC_HINT1 1016
|