mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
envmanager: Toggle interactive window moving
Fixes https://invent.kde.org/plasma/plasma-mobile/-/issues/340 This toggles whether interactive window moving is enabled based on whether docked mode is enabled. Requires https://invent.kde.org/plasma/kwin/-/merge_requests/6745
This commit is contained in:
parent
e5739eb339
commit
6e7376990b
1 changed files with 2 additions and 1 deletions
|
|
@ -39,7 +39,8 @@ QMap<QString, QMap<QString, QVariant>> getKwinrcSettings(KSharedConfig::Ptr m_mo
|
||||||
|
|
||||||
return {{"Windows",
|
return {{"Windows",
|
||||||
{
|
{
|
||||||
{"Placement", convergenceModeEnabled ? "Centered" : "Maximizing"} // maximize all windows by default if we aren't in convergence mode
|
{"Placement", convergenceModeEnabled ? "Centered" : "Maximizing"}, // maximize all windows by default if we aren't in convergence mode
|
||||||
|
{"InteractiveWindowMoveEnabled", convergenceModeEnabled} // only allow window moving in convergence mode
|
||||||
}},
|
}},
|
||||||
{"Plugins",
|
{"Plugins",
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue