Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions blockify/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,11 +626,11 @@ def update_labels(self):
def update_icons(self):
if self.b.found and not self.statusicon_found:
self.set_icon_from_file(self.red_icon_file)
self.status_icon.set_from_pixbuf(self.red_icon_buf)
#self.status_icon.set_from_pixbuf(self.red_icon_buf)
self.statusicon_found = True
elif not self.b.found and self.statusicon_found:
self.set_icon_from_file(self.blue_icon_file)
self.status_icon.set_from_pixbuf(self.blue_icon_buf)
#self.status_icon.set_from_pixbuf(self.blue_icon_buf)
self.statusicon_found = False

def update_slider(self):
Expand Down