Skip to content

Commit 87dc713

Browse files
committed
[update] : Added window icon
1 parent a1165ee commit 87dc713

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/build_helper.py

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

11+
#-- Set window icon --#
12+
self.set_icon_from_file(os.path.join(root_dir,"images/icon/color/AlterV5-Icon-Colored-vector.svg"))
13+
1114
#-- Create Dict --#
1215
self.dict = {}
1316
arch_list = Gtk.ListStore(int, str)
@@ -149,7 +152,7 @@ def __init__(self):
149152
password_box.pack_start(self.password_button, True, True, 0)
150153

151154
# extra_option
152-
extra_option_label = Gtk.Label(label="Extra build options")
155+
extra_option_label = Gtk.Label(label="Extra build options: Additional command line options")
153156
self.extra_option_entry = Gtk.Entry()
154157
self.extra_option_entry.set_text("")
155158
extra_option_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=5)

0 commit comments

Comments
 (0)