Compare commits
3 Commits
v0.18.0
...
d01d39569b
| Author | SHA1 | Date | |
|---|---|---|---|
| d01d39569b | |||
| 55637e36db | |||
| e62afcd667 |
@@ -75,12 +75,12 @@ func (this *Calendar) OnEdit (callback func ()) {
|
||||
}
|
||||
|
||||
func (this *Calendar) prevMonth () {
|
||||
this.time = firstOfMonth(this.time.Add(24 * time.Hour * 40))
|
||||
this.time = firstOfMonth(this.time.Add(24 * time.Hour * -20))
|
||||
this.refresh()
|
||||
}
|
||||
|
||||
func (this *Calendar) nextMonth () {
|
||||
this.time = firstOfMonth(this.time.Add(24 * time.Hour * -20))
|
||||
this.time = firstOfMonth(this.time.Add(24 * time.Hour * 40))
|
||||
this.refresh()
|
||||
}
|
||||
|
||||
@@ -125,9 +125,9 @@ func (this *Calendar) refresh () {
|
||||
|
||||
func (this *Calendar) handleScroll (x, y float64) {
|
||||
if y < 0 {
|
||||
this.nextMonth()
|
||||
} else {
|
||||
this.prevMonth()
|
||||
} else {
|
||||
this.nextMonth()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
1
label.go
1
label.go
@@ -12,5 +12,6 @@ func NewLabel (text string) *Label {
|
||||
this := &Label { TextBox: tomo.NewTextBox() }
|
||||
this.SetRole(tomo.R("objects", "Label", ""))
|
||||
this.SetText(text)
|
||||
this.SetAlign(tomo.AlignStart, tomo.AlignMiddle)
|
||||
return this
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package objects
|
||||
|
||||
import "math"
|
||||
import "image"
|
||||
import "git.tebibyte.media/tomo/tomo"
|
||||
import "git.tebibyte.media/tomo/tomo/input"
|
||||
@@ -33,6 +34,7 @@ func newSlider (orient string, value float64) *Slider {
|
||||
},
|
||||
layout: sliderLayout {
|
||||
vertical: orient == "vertical",
|
||||
value: math.NaN(),
|
||||
},
|
||||
step: 0.05,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user