diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-12 23:29:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-14 10:14:27 +0900 |
commit | 5165d05c566918f9b2fdab956bef7edbadc087d7 (patch) | |
tree | a11e9b847e5b8327d0a2997640b7c50e62ddddc0 | |
parent | cc2cd903ea84d422fe2a9f5c696e41d8f56728dd (diff) | |
download | tdebase-5165d05c566918f9b2fdab956bef7edbadc087d7.tar.gz tdebase-5165d05c566918f9b2fdab956bef7edbadc087d7.zip |
twin: allow wider tiling bands and increase activation delay timer granularity
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | twin/kcmtwin/twinoptions/windows.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twin/kcmtwin/twinoptions/windows.cpp b/twin/kcmtwin/twinoptions/windows.cpp index fae19516f..c7a2479fd 100644 --- a/twin/kcmtwin/twinoptions/windows.cpp +++ b/twin/kcmtwin/twinoptions/windows.cpp @@ -656,7 +656,7 @@ KActiveBorderConfig::KActiveBorderConfig(bool _standAlone, TDEConfig *_config, T " satisfying on slow machines.")); delays = new KIntNumInput(10, active_box); - delays->setRange(0, MAX_EDGE_RES, 50, true); + delays->setRange(0, MAX_EDGE_RES, 10, true); delays->setSuffix(i18n(" msec")); delays->setLabel(i18n("Border &activation delay:")); TQWhatsThis::add( delays, i18n("Here you can set a delay for the activation of" @@ -664,7 +664,7 @@ KActiveBorderConfig::KActiveBorderConfig(bool _standAlone, TDEConfig *_config, T " has been pushed against a screen border for the specified number of milliseconds.") ); distance = new KIntNumInput(10, active_box); - distance->setRange(1, 100, 1, true); + distance->setRange(1, 300, 1, true); distance->setSuffix(i18n(" px")); distance->setLabel(i18n("Border &activation distance:")); TQWhatsThis::add( distance, i18n("The distance from which an active border can" |