From 788ae333713e4a3d87e1c40e9df06787d67e6da4 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Mon, 17 Aug 2009 14:22:40 +0000 Subject: [PATCH] Bullet's pref box glitch - looks like qt 4.5 changed some small finger paint and we need to add small width so all bullets are again inside the area. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31090 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/BulletsModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/BulletsModule.cpp b/src/frontends/qt4/BulletsModule.cpp index 03b89a83a1..c06904bf49 100644 --- a/src/frontends/qt4/BulletsModule.cpp +++ b/src/frontends/qt4/BulletsModule.cpp @@ -77,7 +77,7 @@ void BulletsModule::setupPanel(QListWidget * lw, QString const & panelname, lw->setGridSize(QSize(w, h)); // the widening by 21 is needed to avoid wrapping lw->resize(6 * w + 21, 6 * h); - bulletpaneSW->setMinimumSize(6 * w, 6 * h + 6); + bulletpaneSW->setMinimumSize(6 * w + 5, 6 * h + 6); // get individual bullets from pixmap for (int row = 0; row < 6; ++row) {