fix: don't make text selectable

probably fix in the future
This commit is contained in:
mdwalters
2023-06-26 20:20:34 -04:00
parent bfc25e96e9
commit 7a5b3e6712

View File

@@ -77,7 +77,7 @@ class LemonadeWindow(Gtk.ApplicationWindow):
label.props.hexpand = True
label.props.wrap = True
label.set_halign(Gtk.Align.START)
label.set_selectable(True)
label.set_selectable(False)
box.append(label)
class Lemonade(Adw.Application):