From dbc0817e2860d17b8ecc33f86b028574fe85dc14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Tue, 29 Apr 2003 11:45:08 +0000 Subject: [PATCH] Actually, the patch from #57690 is right too, there was no support for spacers. svn path=/trunk/kdebase/kwin/; revision=222733 --- clients/b2/b2client.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clients/b2/b2client.cpp b/clients/b2/b2client.cpp index a697bed1b1..91e93f412d 100644 --- a/clients/b2/b2client.cpp +++ b/clients/b2/b2client.cpp @@ -502,6 +502,10 @@ void B2Client::addButtons(const QString& s, const QString tips[], this, SLOT(closeWindow())); titleLayout->addWidget(button[BtnClose]); } + break; + case '_': // Additional spacing + titleLayout->addSpacing(4); + break; } } }