diff options
author | Mavridis Philippe <[email protected]> | 2023-07-12 11:54:45 +0300 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-12 14:04:11 +0900 |
commit | a64c48384870e07d06bc87ff14dfe711e2922f74 (patch) | |
tree | f03006fe0745766a460d272ddc215431bd7cd333 /twin/options.cpp | |
parent | 3515607e5ac48686510e60e2e67e4bc15ff03e46 (diff) | |
download | tdebase-a64c48384870e07d06bc87ff14dfe711e2922f74.tar.gz tdebase-a64c48384870e07d06bc87ff14dfe711e2922f74.zip |
twin: Add opaque tiling option
Signed-off-by: Mavridis Philippe <[email protected]>
(cherry picked from commit bc6893644c1ae2dc82c9a30b5c1d6cb3d0f193e1)
Diffstat (limited to 'twin/options.cpp')
-rw-r--r-- | twin/options.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/twin/options.cpp b/twin/options.cpp index 6a0963910..60d8cd145 100644 --- a/twin/options.cpp +++ b/twin/options.cpp @@ -51,8 +51,9 @@ unsigned long Options::updateSettings() changed |= d->updateKWinSettings( config ); // read decoration settings config->setGroup( "Windows" ); - moveMode = stringToMoveResizeMode( config->readEntry("MoveMode", "Opaque" )); - resizeMode = stringToMoveResizeMode( config->readEntry("ResizeMode", "Opaque" )); + moveMode = stringToMoveResizeMode(config->readEntry("MoveMode", "Opaque")); + resizeMode = stringToMoveResizeMode(config->readEntry("ResizeMode", "Opaque")); + tilingMode = stringToMoveResizeMode(config->readEntry("TilingMode", "Opaque")); show_geometry_tip = config->readBoolEntry("GeometryTip", false); reset_maximized_window_geometry = config->readBoolEntry("ResetMaximizedWindowGeometry", false); tabboxOutline = config->readBoolEntry("TabboxOutline", true); |