The original scale widget has an option -resolution, which is lacking in the newer ttk::scale replacement. -resolution allows one to specify a value, such that only integer multiples of the resolution can be set. You can use the below widgetadaptor to add this missing option back into ttk::scale. ====== # hoppingslider # derived from ttk::scale, implements -resolution found in older scale package require snit snit::widgetadaptor hoppingslider { option -resolution -default 1.0 option -variable -configuremethod SetVariable option -command delegate option * to hull except -command delegate method * to hull variable oldval variable modified constructor { args } { installhull using ttk::scale -command [mymethod resolution] $self configurelist $args $hull configure -variable $options(-variable) set oldval [$hull cget -value] set modified false bind $self [mymethod ButtonPress] bind $self [mymethod ButtonPress] bind $self [mymethod ButtonPress] bind $self [mymethod ButtonReleased] bind $self [mymethod ButtonReleased] bind $self [mymethod ButtonReleased] } method SetVariable { -variable varname } { set options(-variable) $varname $hull configure -variable $varname if { $varname != "" } { upvar #0 $varname tracevar if { ![info exists tracevar] } { set tracevar [$hull cget -from] } set oldval $tracevar } } method resolution { val } { # round value to nearest multiple of resolution set res $options(-resolution) set hopval [expr {$res * floor(double($val) / $res + 0.5)}] if { $options(-variable) != "" } { upvar #0 $options(-variable) var set var $hopval } # run callback as in standard scale # only for a different value == integer hop if { $hopval != $oldval } { set oldval $hopval set modified true if { $options(-command) != {} } { set command_with_value [linsert $options(-command) end $hopval] uplevel #0 $command_with_value } } return $hopval } method ButtonPress {} { set oldval [$hull cget -value] } method ButtonReleased {} { # when the mouse button is released, and the value was modified # generate release event if { $modified } { event generate $win <> set modified false } } #--------------------------test------------------------------# typemethod htest {} { toplevel .t pack [hoppingslider .t.l -from -10 -to 10 -resolution 2.0 -variable test -command echo] -expand yes -fill x } } ======