summaryrefslogtreecommitdiff
path: root/scripts/motion.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/motion.py')
-rw-r--r--scripts/motion.py4
1 files changed, 2 insertions, 2 deletions
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)