diff options
author | 2014-10-11 14:05:35 -0400 | |
---|---|---|
committer | 2014-10-11 14:05:35 -0400 | |
commit | b148931b259d4ebd407a5ee5352535df8b1db9ba (patch) | |
tree | 83ab6abf6b8e56d66b1e511ff0215dc1a7c3f745 /modules/textadept/menu.lua | |
parent | 358b67a248c62b32e0afdb95d459802dab45e49d (diff) | |
download | textadept-b148931b259d4ebd407a5ee5352535df8b1db9ba.tar.gz textadept-b148931b259d4ebd407a5ee5352535df8b1db9ba.zip |
Grow and shrink views by an integral, not arbitrary, value.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 2c35dc4d..0cbf4590 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -175,8 +175,8 @@ local menubar = { {_L['Split View _Vertical'], {view.split, view, true}}, {_L['_Unsplit View'], {view.unsplit, view}}, {_L['Unsplit _All Views'], utils.unsplit_all}, - {_L['_Grow View'], {utils.grow, 10}}, - {_L['Shrin_k View'], {utils.shrink, 10}}, + {_L['_Grow View'], utils.grow}, + {_L['Shrin_k View'], utils.shrink}, SEPARATOR, {_L['Toggle Current _Fold'], utils.toggle_current_fold}, SEPARATOR, |