X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fmotion.py;h=2d6939c519c6f4416d98abe370d79550ca1a960c;hb=74cfb1b4c115cdb4e05aa823b09d2b5ea9d0d690;hp=649f07ba41996734956b50dcd9d68495eb3a9a40;hpb=ee9eaed6cd48db249711912133758679a029b5b1;p=chaz%2Fopenbox diff --git a/scripts/motion.py b/scripts/motion.py index 649f07ba..2d6939c5 100644 --- a/scripts/motion.py +++ b/scripts/motion.py @@ -149,9 +149,9 @@ def _do_move(): _poplabel.setText(text) scsize = otk.display.screenInfo(_screen).size() size = _poplabel.minSize() - _popwidget.resize(_poplabel.minSize()) - _popwidget.move(otk.Point((scsize.width() - size.width()) / 2, - (scsize.height() - size.height()) / 2)) + _popwidget.moveresize(otk.Rect((scsize.width() - size.width()) / 2, + (scsize.height() - size.height()) / 2, + size.width(), size.height())) _popwidget.show(1) def _move(data): @@ -214,8 +214,6 @@ def _do_resize(): w = _cw + dx h = _ch + dy - if w < 0: w = 0 - if h < 0: h = 0 if RESIZE_RUBBERBAND: # draw the outline ... @@ -235,9 +233,9 @@ def _do_resize(): _poplabel.setText(text) scsize = otk.display.screenInfo(_screen).size() size = _poplabel.minSize() - _popwidget.resize(_poplabel.minSize()) - _popwidget.move(otk.Point((scsize.width() - size.width()) / 2, - (scsize.height() - size.height()) / 2)) + _popwidget.moveresize(otk.Rect((scsize.width() - size.width()) / 2, + (scsize.height() - size.height()) / 2, + size.width(), size.height())) _popwidget.show(1) def _resize(data):