diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-05-07 00:42:40 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-05-07 00:42:40 +0000 |
commit | 704b1af24db5514b66e8950baff50197f205340a (patch) | |
tree | 00adf5267411335d16fa83cb4a699a1d1516dc30 | |
parent | 536c566c02d4479f0ef92f5e549e14fbc28171ca (diff) | |
download | anaconda-704b1af24db5514b66e8950baff50197f205340a.tar.gz anaconda-704b1af24db5514b66e8950baff50197f205340a.tar.xz anaconda-704b1af24db5514b66e8950baff50197f205340a.zip |
and more warnings! (#122496)
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -337,8 +337,8 @@ def titleBarMotionEventCB(widget, event, data): newx = gtk.gdk.screen_width() - w if (newy+20) > (gtk.gdk.screen_height()): newy = gtk.gdk.screen_height() - 20 - - data["window"].move(newx, newy) + + data["window"].move(int(newx), int(newy)) def addFrame(dialog, title=None, showtitle = 1): contents = dialog.get_children()[0] |