@@ -512,9 +512,9 @@ def __init__(self, username, date, comment, rating):
512512 ratings_box = Gtk .Box (orientation = Gtk .Orientation .VERTICAL , spacing = 6 )
513513 stars_box = Gtk .Box ()
514514 for i in range (rating ):
515- stars_box .pack_start (Gtk .Image .new_from_icon_name ("starred-symbolic" , Gtk .IconSize .MENU ), False , False , 0 )
515+ stars_box .pack_start (Gtk .Image .new_from_icon_name ("xapp- starred-symbolic" , Gtk .IconSize .MENU ), False , False , 0 )
516516 for i in range (5 - rating ):
517- stars_box .pack_start (Gtk .Image .new_from_icon_name ("non-starred-symbolic" , Gtk .IconSize .MENU ), False , False , 0 )
517+ stars_box .pack_start (Gtk .Image .new_from_icon_name ("xapp- non-starred-symbolic" , Gtk .IconSize .MENU ), False , False , 0 )
518518 ratings_box .pack_start (stars_box , False , False , 0 )
519519
520520 label_name = Gtk .Label (xalign = 0.0 )
@@ -1113,8 +1113,8 @@ def load_banner(self):
11131113 # Create navigation buttons
11141114 left_arrow = Gtk .Button ()
11151115 right_arrow = Gtk .Button ()
1116- left_image = Gtk .Image .new_from_icon_name ("go-previous-symbolic" , Gtk .IconSize .SMALL_TOOLBAR )
1117- right_image = Gtk .Image .new_from_icon_name ("go-next-symbolic" , Gtk .IconSize .SMALL_TOOLBAR )
1116+ left_image = Gtk .Image .new_from_icon_name ("xapp- go-previous-symbolic" , Gtk .IconSize .SMALL_TOOLBAR )
1117+ right_image = Gtk .Image .new_from_icon_name ("xapp- go-next-symbolic" , Gtk .IconSize .SMALL_TOOLBAR )
11181118
11191119 # Setup button styling
11201120 button_style_override = """
@@ -1673,7 +1673,7 @@ def add_screenshot(self, pkginfo, ss_path, n):
16731673
16741674 if ss_path is None :
16751675 box = Gtk .Box (orientation = Gtk .Orientation .VERTICAL , spacing = 6 , valign = Gtk .Align .CENTER )
1676- image = Gtk .Image (icon_name = "face-uncertain-symbolic" , icon_size = Gtk .IconSize .DIALOG )
1676+ image = Gtk .Image (icon_name = "xapp- face-uncertain-symbolic" , icon_size = Gtk .IconSize .DIALOG )
16771677 label = Gtk .Label (label = _ ("No screenshots available" ))
16781678 box .pack_start (image , False , False , 0 )
16791679 box .pack_start (label , False , False , 0 )
@@ -2872,14 +2872,14 @@ def show_package(self, pkginfo, previous_page):
28722872 rating = review_info .avg_rating
28732873 remaining_stars = 5
28742874 while rating >= 1.0 :
2875- box_stars .pack_start (Gtk .Image (icon_name = "starred-symbolic" , pixel_size = 16 ), False , False , 0 )
2875+ box_stars .pack_start (Gtk .Image (icon_name = "xapp- starred-symbolic" , pixel_size = 16 ), False , False , 0 )
28762876 rating -= 1
28772877 remaining_stars -= 1
28782878 if rating > 0.0 :
2879- box_stars .pack_start (Gtk .Image (icon_name = "semi-starred-symbolic" , pixel_size = 16 ), False , False , 0 )
2879+ box_stars .pack_start (Gtk .Image (icon_name = "xapp- semi-starred-symbolic" , pixel_size = 16 ), False , False , 0 )
28802880 remaining_stars -= 1
28812881 for i in range (remaining_stars ):
2882- box_stars .pack_start (Gtk .Image (icon_name = "non-starred-symbolic" , pixel_size = 16 ), False , False , 0 )
2882+ box_stars .pack_start (Gtk .Image (icon_name = "xapp- non-starred-symbolic" , pixel_size = 16 ), False , False , 0 )
28832883
28842884 box_stars .show_all ()
28852885
0 commit comments