CVS commit by aseigo: make moving of maximized windows off by default. have had this patch for a while and talked about it with Seli on March 9th but never got around to committing it. after being asked about it _again_ i decided to do `cvs ci` this allows well designed window decorations to allow the user to jam the mouse into the corner of the screen and close the window. M +2 -2 kcmkwin/kwinoptions/windows.cpp 1.146 M +1 -1 lib/kdecoration_p.cpp 1.8 --- kdebase/kwin/kcmkwin/kwinoptions/windows.cpp #1.145:1.146 @@ -1051,5 +1051,5 @@ void KMovingConfig::load( void ) // } - setMoveResizeMaximized(config->readBoolEntry(KWIN_MOVE_RESIZE_MAXIMIZED, true)); + setMoveResizeMaximized(config->readBoolEntry(KWIN_MOVE_RESIZE_MAXIMIZED, false)); int v; @@ -1135,5 +1135,5 @@ void KMovingConfig::defaults() setGeometryTip(false); setPlacement(SMART_PLACEMENT); - setMoveResizeMaximized(true); + setMoveResizeMaximized(false); //copied from kcontrol/konq/kwindesktop, aleXXX --- kdebase/kwin/lib/kdecoration_p.cpp #1.7:1.8 @@ -206,5 +206,5 @@ unsigned long KDecorationOptionsPrivate: config->setGroup( "Windows" ); bool old_move_resize_maximized_windows = move_resize_maximized_windows; - move_resize_maximized_windows = config->readBoolEntry( "MoveResizeMaximizedWindows", true ); + move_resize_maximized_windows = config->readBoolEntry( "MoveResizeMaximizedWindows", false ); if( old_move_resize_maximized_windows != move_resize_maximized_windows ) changed |= SettingBorder;