Skip to content

Commit 20769f4

Browse files
committed
[update] : Use variable for icon path
1 parent 87dc713 commit 20769f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/build_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ def __init__(self):
99
Gtk.Window.__init__(self, title="AlterISO GUI Helper")
1010

1111
#-- Set window icon --#
12-
self.set_icon_from_file(os.path.join(root_dir,"images/icon/color/AlterV5-Icon-Colored-vector.svg"))
12+
_window_icon = "images/icon/color/AlterV5-Icon-Colored-vector.svg"
13+
self.set_icon_from_file(os.path.join(root_dir, _window_icon))
1314

1415
#-- Create Dict --#
1516
self.dict = {}

0 commit comments

Comments
 (0)