aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-04-28 20:09:31 (GMT)
committerfluxgen <fluxgen>2002-04-28 20:09:31 (GMT)
commit41775ff631ac2e72c90b76ce2b9e4217148cbe53 (patch)
tree401b3a2537a92dda9faec6a62a59c43672073fa6 /src
parentda517e6074441019cc25226c0538b956be01a0fc (diff)
downloadfluxbox_pavel-41775ff631ac2e72c90b76ce2b9e4217148cbe53.zip
fluxbox_pavel-41775ff631ac2e72c90b76ce2b9e4217148cbe53.tar.bz2
fixed bug [ 515483 ] XMMS Problem, with the handles = true
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 03d3f04..9b4f555 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.cc,v 1.47 2002/04/26 18:27:39 fluxgen Exp $ 25// $Id: Window.cc,v 1.48 2002/04/28 20:09:31 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -239,8 +239,9 @@ tab(0)
239 239
240 // adjust the window decorations based on transience and window sizes 240 // adjust the window decorations based on transience and window sizes
241 if (transient) { 241 if (transient) {
242 decorations.maximize = decorations.handle = 242 decorations.maximize = functions.maximize = false;
243 decorations.border = functions.maximize = false; 243 //we can still use the handles to resize it
244 decorations.handle = decorations.border = true;
244 } 245 }
245 246
246 if ((client.normal_hint_flags & PMinSize) && 247 if ((client.normal_hint_flags & PMinSize) &&