فهرست منبع

wxGUI/forms: fix Python 3.8 integer warning (#1302)

Anna Petrasova 4 سال پیش
والد
کامیت
1ac0d673da
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      gui/wxpython/gui_core/forms.py

+ 3 - 3
gui/wxpython/gui_core/forms.py

@@ -717,10 +717,10 @@ class TaskFrame(wx.Frame):
             scale = 0.50
         self.SetSize(
             wx.Size(
-                sizeFrame[0],
-                sizeFrame[1] + scale * max(
+                round(sizeFrame[0]),
+                round(sizeFrame[1] + scale * max(
                     self.notebookpanel.panelMinHeight,
-                    self.notebookpanel.constrained_size[1])))
+                    self.notebookpanel.constrained_size[1]))))
 
         # thread to update dialog
         # create queues