diff options
author | deva <deva> | 2011-02-23 07:23:11 +0000 |
---|---|---|
committer | deva <deva> | 2011-02-23 07:23:11 +0000 |
commit | 8fbf461b279c0b96fdf5b764ef04376b5f7da7ec (patch) | |
tree | 458975653c6c84a1b005a6438fc548fa14f5df9d /client/macrodrawer.cc | |
parent | 47561fdd6e67ab1918acf8f44ed54759bdf467a7 (diff) |
Fade between widgets introduced in Collapser.
Diffstat (limited to 'client/macrodrawer.cc')
-rw-r--r-- | client/macrodrawer.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/macrodrawer.cc b/client/macrodrawer.cc index a28e7da..f42a3b7 100644 --- a/client/macrodrawer.cc +++ b/client/macrodrawer.cc @@ -64,6 +64,10 @@ MacroDrawer::MacroDrawer(Macro *macro, QString title, QWidget *edge) installEventFilter(this); connect(button, SIGNAL(clicked()), this, SLOT(toggleMe())); } + + QMargins m = contentsMargins(); + m.setLeft(6); + setContentsMargins(m); } bool MacroDrawer::eventFilter(QObject *obj, QEvent *event) |