X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=scripts%2Fmotion.py;h=2f85ef7ae3855b510371de6d4d615e3122a92a4c;hb=cf9773325130da00f12a1c3475b2bc6d7d2bd466;hp=410ee4d6c1e775d6330ccfb930ec60e0a654919c;hpb=14813743539bafc42c91f5aedd28788dcd64ea5e;p=chaz%2Fopenbox diff --git a/scripts/motion.py b/scripts/motion.py index 410ee4d6..2f85ef7a 100644 --- a/scripts/motion.py +++ b/scripts/motion.py @@ -149,13 +149,13 @@ def _do_move(final): _poplabel = otk.Label(_popwidget) _poplabel.setHighlighted(1) _poplabel.setText(text) + size = _poplabel.minSize() if POPUP_CENTERED: scsize = ob.openbox.screen(_screen).size() x = (scsize.width() - size.width()) / 2 y = (scsize.height() - size.height()) / 2 else: x = y = 0 - size = _poplabel.minSize() _popwidget.moveresize(otk.Rect(x, y, size.width(), size.height())) _popwidget.show(1) @@ -237,13 +237,13 @@ def _do_resize(): _poplabel = otk.Label(_popwidget) _poplabel.setHighlighted(1) _poplabel.setText(text) + size = _poplabel.minSize() if POPUP_CENTERED: scsize = ob.openbox.screen(_screen).size() x = (scsize.width() - size.width()) / 2 y = (scsize.height() - size.height()) / 2 else: x = y = 0 - size = _poplabel.minSize() _popwidget.moveresize(otk.Rect(x, y, size.width(), size.height())) _popwidget.show(1)