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 | a6ad2ff8b66866aeae17a8bee1eb54edfee331ad (patch) | |
| tree | 392ac33978553c18efe124d138ea9d71bb9c6067 /include/Scintilla.iface | |
| parent | 7f94250659318b6a828cd122e69e81e131c3380d (diff) | |
| download | scintilla-mirror-a6ad2ff8b66866aeae17a8bee1eb54edfee331ad.tar.gz | |
Backport: Bug [#2118]. Add TabMinimumWidth property to API so applications can display
overviews or minimaps with reasonable layout.
Backport of changeset 7700:e6efe007d2dc.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 7280f71b8..1dd85982d 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -252,6 +252,12 @@ set void SetTabWidth=2036(int tabWidth,) # Retrieve the visible size of a tab. get int GetTabWidth=2121(,) +# Set the minimum visual width of a tab. +set void SetTabMinimumWidth=2724(int pixels,) + +# Get the minimum visual width of a tab. +get int GetTabMinimumWidth=2725(,) + # Clear explicit tabstops on a line. fun void ClearTabStops=2675(line line,) |
