We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 758a008 commit 897a24cCopy full SHA for 897a24c
src/input.jl
@@ -54,3 +54,5 @@ GtkSpinButton(min,max,step) = GtkSpinButton(ccall((:gtk_spin_button_new_with_ran
54
(Cdouble,Cdouble,Cdouble),min,max,step))
55
GtkSpinButton(scale::Ranges) = GtkSpinButton(minimum(scale),maximum(scale),step(scale))
56
57
+GtkAdjustment(spinButton::GtkSpinButton) = GtkAdjustment(ccall((:gtk_spin_button_get_adjustment,libgtk),
58
+ Ptr{GObject},(Ptr{GObject},), spinButton))
0 commit comments