You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
410 B
16 lines
410 B
13 years ago
|
Index: kdecore/kwinmodule.cpp
|
||
|
===================================================================
|
||
|
--- kdecore/kwinmodule.cpp.orig
|
||
|
+++ kdecore/kwinmodule.cpp
|
||
|
@@ -436,7 +436,9 @@ QRect KWinModule::workArea( const QValue
|
||
|
if ( strut.bottom > 0 )
|
||
|
r.setBottom( r.bottom() - (int) strut.bottom );
|
||
|
|
||
|
- a = a.intersect(r);
|
||
|
+ QRect tmp;
|
||
|
+ tmp = a.intersect(r);
|
||
|
+ a = tmp;
|
||
|
}
|
||
|
return a;
|
||
|
}
|