The handle width can be specified by themes with padding values. This also allows for far more granularity of the handle width adjustment as it can depend on context.
9 lines
222 B
Go
9 lines
222 B
Go
package tomo
|
|
|
|
// Config can return global configuration parameters.
|
|
type Config interface {
|
|
// ScrollVelocity returns how many pixels should be scrolled every time
|
|
// a scroll button is pressed.
|
|
ScrollVelocity () int
|
|
}
|