diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-05 13:02:32 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-05 13:02:32 +0300 |
commit | 741732d2578caebd40446e221f5ee7f44330e907 (patch) | |
tree | 8357aa9919e3e75d32e33ccc16b4b590d52d60cc /include | |
parent | bf52c6896700d435d9623d27d74e595c504dff08 (diff) |
fixes #3701 (tabSRMM: в редакторе кнопок криво отображаются многострочные описания)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_srmm_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index ab50d3ee6f..5e11a4b95a 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -53,11 +53,12 @@ struct CustomButtonData : public MZeroedObject int m_dwButtonID; // id of button used while button creation and to store button info in DB
ptrA m_pszModuleName; // module name without spaces and underline symbols (e.g. "tabsrmm")
- int m_dwButtonCID; // button's control id
+ int m_dwButtonCID; // button's control id
int m_dwArrowCID; // only use with BBBF_ISARROWBUTTON flag
ptrW m_pwszText; // button's text
ptrW m_pwszTooltip; // button's tooltip
+ ptrW m_pwszOptions; // button's name in options, might be NULL
int m_iButtonWidth; // must be 22 for regular button and 33 for button with arrow
HANDLE m_hIcon; // Handle to icolib registred icon
|