Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-03-14 21:22:54 +0300
committerJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-03-14 21:22:54 +0300
commit3903a524c80479e75fbe3be0cdfcc96147bfea67 (patch)
tree8f5295213f11dfb0edd154115e53f8988e2ba4ac /ui
parentb3f7a7d1251ef3c064b8b4ef474854a45b6edb82 (diff)
added 'UI' which was removed
Diffstat (limited to 'ui')
-rwxr-xr-xui/FilesPanel.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/FilesPanel.go b/ui/FilesPanel.go
index ba93077..8b85da8 100755
--- a/ui/FilesPanel.go
+++ b/ui/FilesPanel.go
@@ -246,7 +246,7 @@ func (this *filesPanel) createRootLocationButton(location dataModels.Location) *
rootLocationButton, _ := gtk.ButtonNew()
rootLocationButton.Connect("clicked", func() {
- this.sdNotify(daemon.SdNotifyWatchdog)
+ this.UI.sdNotify(daemon.SdNotifyWatchdog)
this.locationHistory = utils.LocationHistory {
Locations: []dataModels.Location{location},
@@ -254,7 +254,7 @@ func (this *filesPanel) createRootLocationButton(location dataModels.Location) *
this.doLoadFiles()
- this.sdNotify(daemon.SdNotifyReady)
+ this.UI.sdNotify(daemon.SdNotifyReady)
})
rootLocationButton.Add(topBox)