Commit 98e94dd 1 parent 8781ff9 commit 98e94dd Copy full SHA for 98e94dd
File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -193,9 +193,6 @@ def __init__(
193
193
self ._notifier = notifier
194
194
self .fail_msg_box : Optional [ErtMessageBox ] = None
195
195
196
- self ._minimum_width = 1200
197
- self ._minimum_height = 600
198
-
199
196
self ._ticker = QTimer (self )
200
197
self ._ticker .timeout .connect (self ._on_ticker )
201
198
@@ -240,8 +237,7 @@ def __init__(
240
237
spin_movie .start ()
241
238
242
239
self .processing_animation = QLabel ()
243
- self .processing_animation .setMaximumSize (QSize (size , size ))
244
- self .processing_animation .setMinimumSize (QSize (size , size ))
240
+ self .processing_animation .setFixedSize (QSize (size , size ))
245
241
self .processing_animation .setMovie (spin_movie )
246
242
247
243
button_layout = QHBoxLayout ()
@@ -292,7 +288,7 @@ def __init__(
292
288
self .restart_button .clicked .connect (self .restart_failed_realizations )
293
289
self .simulation_done .connect (self ._on_simulation_done )
294
290
295
- self .setMinimumSize (self . _minimum_width , self . _minimum_height )
291
+ self .setMinimumSize (1200 , 600 )
296
292
self .finished .connect (self ._on_finished )
297
293
298
294
self ._restart = False
You can’t perform that action at this time.
0 commit comments