]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/BulletsModule.cpp
Properly track the lifetime of signals2::slots (#8261)
[lyx.git] / src / frontends / qt4 / BulletsModule.cpp
index 03b89a83a1ca22717fe91cfdcdac150bc578da21..5cbca093e81ce52c99d91ef2a15a1499fa3c71ef 100644 (file)
@@ -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) {
@@ -178,6 +178,7 @@ void BulletsModule::on_bulletsizeCO_activated(int size)
 {
        // -1 apparently means default...
        bullets_[levelLW->currentRow()].setSize(size - 1);
+       changed();
 }