Skip to content

Commit 989609b

Browse files
authored
Update main.py
1 parent 787a1a8 commit 989609b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ def __init__(self, parent, **kwargs):
143143
box_rTimer.append(button_r)
144144

145145
label_reset = Gtk.Label.new(str=jT["reset_counter"])
146+
label_reset.set_wrap(True)
146147
box_rTimer.append(label_reset)
147148

148149
# F1 shortcut
@@ -152,6 +153,7 @@ def __init__(self, parent, **kwargs):
152153
box_about.append(button_aTimer)
153154

154155
label_aTimer = Gtk.Label.new(str=jT["show_about_dialog"])
156+
label_aTimer.set_wrap(True)
155157
box_about.append(label_aTimer)
156158

157159
# F2 shortcut
@@ -161,6 +163,7 @@ def __init__(self, parent, **kwargs):
161163
box_dTimer.append(button_d)
162164

163165
label_dark = Gtk.Label.new(str=jT["activate_dark_theme"])
166+
label_dark.set_wrap(True)
164167
box_dTimer.append(label_dark)
165168

166169
# F3 shortcut
@@ -170,6 +173,7 @@ def __init__(self, parent, **kwargs):
170173
box_tTimer.append(button_lc)
171174

172175
label_light = Gtk.Label.new(str=jT["activate_system_theme"])
176+
label_light.set_wrap(True)
173177
box_tTimer.append(label_light)
174178

175179
# F5 shortcut
@@ -179,6 +183,7 @@ def __init__(self, parent, **kwargs):
179183
box_delSetttings.append(button_rTimer)
180184

181185
label_rTimer = Gtk.Label.new(str=jT["delete_timer_settings"])
186+
label_rTimer.set_wrap(True)
182187
box_delSetttings.append(label_rTimer)
183188

184189
content_area.append(box_sTimer)

0 commit comments

Comments
 (0)