Skip to content

Commit

Permalink
Change the package icon with an icon supported on MAte, Gnome and XFCE
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbsd committed Nov 15, 2023
1 parent d6bbaa8 commit acfa7dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions software-station
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ from software_station_pkg import (

from software_station_xpm import xpmPackageCategory

__VERSION__ = '1.8'
__VERSION__ = '1.9'

global pkg_to_install
pkg_to_install = []
Expand Down Expand Up @@ -545,7 +545,7 @@ class TableWindow(Gtk.Window):
def update_search(self, search):
if globals()[f'stop_search_{search}'] is True:
return
pixbuf = Gtk.IconTheme.get_default().load_icon('emblem-package', 42, 0)
pixbuf = Gtk.IconTheme.get_default().load_icon('package-x-generic', 42, 0)
if len(self.search) > 1:
if globals()[f'stop_search_{search}'] is True:
return
Expand Down Expand Up @@ -595,7 +595,7 @@ class TableWindow(Gtk.Window):

def update_pkg_store(self):
self.pkg_store.clear()
pixbuf = Gtk.IconTheme.get_default().load_icon('emblem-package', 42, 0)
pixbuf = Gtk.IconTheme.get_default().load_icon('package-x-generic', 42, 0)
if self.available_or_installed == 'available':
pkg_d = self.available_pkg[self.category]
else:
Expand Down

0 comments on commit acfa7dc

Please sign in to comment.