Skip to content

Commit

Permalink
Make value in RoundyLabel selectable
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Jul 22, 2023
1 parent 1f76c37 commit 209c645
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Widgets/Labels/LabelRoundy.vala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ public class Monitor.LabelRoundy : Gtk.Fixed {
public Gtk.Label desc;

public LabelRoundy (string description) {
val = new Gtk.Label (Utils.NO_DATA);
val = new Gtk.Label (Utils.NO_DATA) {
selectable = true
};
val.get_style_context ().add_class ("roundy-label");

desc = new Gtk.Label (description.up ());
Expand Down

0 comments on commit 209c645

Please sign in to comment.