Skip to content

Commit

Permalink
Show no title when no subject selected
Browse files Browse the repository at this point in the history
  • Loading branch information
leolost2605 committed Dec 24, 2023
1 parent fbae2aa commit 9d93633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subject-page.vala
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public class SubjectPage : Gtk.Box {
if (subject == null) {
placeholder_stack.visible_child = placeholder;
edit_subject_button.visible = false;
title_label.title = _("No Subject Selected");
title_label.title = "";
} else {
placeholder_stack.visible_child = gtk_sw;
edit_subject_button.visible = true;
Expand Down

0 comments on commit 9d93633

Please sign in to comment.