File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ func (l *Lifecycle) SetOnStoppedHookExecuted(f func()) {
26
26
l .onStoppedHookExecuted = f
27
27
}
28
28
29
- // SetOnEnteredForeground hooks into the the app becoming foreground.
29
+ // SetOnEnteredForeground hooks into the app becoming foreground.
30
30
func (l * Lifecycle ) SetOnEnteredForeground (f func ()) {
31
31
l .onForeground .Store (f )
32
32
}
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ func destroyExpiredRenderers(now time.Time) {
202
202
}
203
203
204
204
// matchesACanvas returns true if the canvas represented by the canvasInfo object matches one of
205
- // the canvases passed in in 'canvases', otherwise false is returned.
205
+ // the canvases passed in 'canvases', otherwise false is returned.
206
206
func matchesACanvas (cinfo * canvasInfo , canvases []fyne.Canvas ) bool {
207
207
canvas := cinfo .canvas
208
208
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ func constructURI(u fyne.URI) string {
67
67
return uri
68
68
}
69
69
70
- // Exists checks whether the the resource at u returns a
70
+ // Exists checks whether the resource at u returns a
71
71
// non "404 NOT FOUND" response header.
72
72
//
73
73
// Implements: repository.Repository
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ type FileFilter interface {
12
12
Matches (fyne.URI ) bool
13
13
}
14
14
15
- // ExtensionFileFilter represents a file filter based on the the ending of file names,
15
+ // ExtensionFileFilter represents a file filter based on the ending of file names,
16
16
// for example ".txt" and ".png".
17
17
type ExtensionFileFilter struct {
18
18
Extensions []string
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ func TestThemedResource_Content_GroupPolygonsFile(t *testing.T) {
131
131
assert .NotEqual (t , staticResource .Content (), themedResource .Content ())
132
132
}
133
133
134
- // a black svg object omits the fill tag, this checks it it still properly updated
134
+ // a black svg object omits the fill tag, this checks if it still properly updated
135
135
func TestThemedResource_Content_BlackFillIsUpdated (t * testing.T ) {
136
136
fyne .CurrentApp ().Settings ().SetTheme (DarkTheme ())
137
137
staticResource := helperLoadRes (t , "cancel_PathsBlackFill.svg" )
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ func (c *Check) Bind(data binding.Bool) {
63
63
}
64
64
}
65
65
66
- // SetChecked sets the the checked state and refreshes widget
66
+ // SetChecked sets the checked state and refreshes widget
67
67
func (c * Check ) SetChecked (checked bool ) {
68
68
if checked == c .Checked {
69
69
return
You can’t perform that action at this time.
0 commit comments