diff options
author | Neil <nyamatongwe@gmail.com> | 2019-07-05 11:35:32 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-07-05 11:35:32 +1000 |
commit | 30120988430ad43c9686d19c10c41b879128c6ba (patch) | |
tree | 2b1d7776cb5591544282f0ecee32729e6626641c /include/Scintilla.h | |
parent | 0cb68d97ca50d7783b5b13008934baeb6c982929 (diff) | |
download | scintilla-mirror-30120988430ad43c9686d19c10c41b879128c6ba.tar.gz |
Bug [#2118]. Add TabMinimumWidth property to API so applications can display
overviews or minimaps with reasonable layout.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 808ad9985..40a2c8eca 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -93,6 +93,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETBUFFEREDDRAW 2035 #define SCI_SETTABWIDTH 2036 #define SCI_GETTABWIDTH 2121 +#define SCI_SETTABMINIMUMWIDTH 2724 +#define SCI_GETTABMINIMUMWIDTH 2725 #define SCI_CLEARTABSTOPS 2675 #define SCI_ADDTABSTOP 2676 #define SCI_GETNEXTTABSTOP 2677 |