pharo-spec / mars-gtk

The Gtk3 bindings for Pharo and Spec
14 stars 6 forks source link

Inconsistent default number input ranges (Morphic, Gtk) #27

Open pavel-krivanek opened 4 years ago

pavel-krivanek commented 4 years ago

this number input contains -1:

app := SpApplication new.
input := SpNumberInputFieldPresenter newApplication: app.
input number: -1.
input openWithSpec.

This number input contains 0.

app := SpApplication new.
app useBackend: #Gtk.
input := SpNumberInputFieldPresenter newApplication: app.
input number: -1.
input openWithSpec.
pavel-krivanek commented 4 years ago

to set input rangeMinimum: -1000 maximum: 1000000. does not help