From cf88f2000a2241f221cc5adfcdfd317f2c9c0202 Mon Sep 17 00:00:00 2001 From: Rik Hemsley Date: Sat, 15 Jul 2000 19:27:07 +0000 Subject: [PATCH] minor work svn path=/trunk/kdebase/kwin/; revision=57145 --- clients/kde/TitleBar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/kde/TitleBar.cpp b/clients/kde/TitleBar.cpp index 88a64652b4..3948d6b03d 100644 --- a/clients/kde/TitleBar.cpp +++ b/clients/kde/TitleBar.cpp @@ -120,9 +120,9 @@ TitleBar::resizeEvent(QResizeEvent *) { int sizeProblem = 0; - if (width() < 80) sizeProblem = 3; - else if (width() < 100) sizeProblem = 2; - else if (width() < 120) sizeProblem = 1; + if (width() < 120) sizeProblem = 3; + else if (width() < 160) sizeProblem = 2; + else if (width() < 200) sizeProblem = 1; switch (sizeProblem) {