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:48 +0900 |
| commit | a8360fb7c43ecd9b82929592d01f953bf4d14343 (patch) | |
| tree | 4e7ee5ed40a6e0e2ba4cbfd67d749a2e5cf7bf1e | |
| parent | e0e7c87f52752807f675fedf606f927691efc360 (diff) | |
| download | tdebase-a8360fb7.tar.gz tdebase-a8360fb7.zip | |
twin: allow wider tiling bands and increase activation delay timer granularity
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 5165d05c566918f9b2fdab956bef7edbadc087d7)
| -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 9d8e8d617..fd37e554b 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" |
