Game Speed window unusable

Issue #1121 resolved
Lars Gusowski created an issue

everything is displayed in one line.

i think the line breaks are missed.

Windows is unusable

Comments (8)

  1. Lars Gusowski reporter

    you need to crash the game as right click doesn't work to close the window

    you are catched within the window :/

  2. Gandj x

    Possible fix

    --- gamespeed_settings.js   2016-03-20 18:57:55.736090450 +0100
    +++ gamespeed_settings.js.ref   2016-03-20 15:53:34.091925000 +0100
    @@ -20,7 +20,7 @@
    -    var spnScrollSpeed = w.addSpinbox(28, 85, w.w-28*2, 24);
    +    var spnScrollSpeed = w.addSpinbox(28, 60, w.w-28*2, 24);
    
    @@ -32,7 +32,7 @@
    -    var spnAutpsaveInterval = w.addSpinbox(28, 110, w.w-28*2, 24);
    +    var spnAutpsaveInterval = w.addSpinbox(28, 60, w.w-28*2, 24);
    
    @@ -44,12 +44,12 @@
    -    var btnOk = w.addButton(w.w*0.25, w.h-60, w.w*0.5,  22);
    +    var btnOk = wnd.addButton(w.w*0.25, w.h-60, w.w*0.5,  22);
    
    -    var btnCancel = w.addButton(w.w*0.25, w.h-35, w.w*0.5,  22);
    +    var btnCancel = wnd.addButton(w.w*0.25, w.h-35, w.w*0.5,  22);
    

    Fix both the overlapping cursors and the missing buttons.

  3. Log in to comment