Skip to content

Commit

Permalink
feat(composer): use numeric style for counters (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr authored Sep 22, 2024
1 parent 9c9fb88 commit 1f46223
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dialogs/Composer/AttachmentsPageAttachment.vala
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public class Tuba.AttachmentsPageAttachment : Widgets.Attachment.Item {
margin_top = 14,
margin_bottom = 14,
tooltip_text = _("Characters Left"),
css_classes = { "heading" }
css_classes = { "heading", "numeric" }
};
bottom_bar.pack_end (dialog_char_counter);

Expand Down
2 changes: 1 addition & 1 deletion src/Dialogs/Composer/EditorPage.vala
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public class Tuba.EditorPage : ComposerPage {
char_counter = new Gtk.Label (char_limit.to_string ()) {
margin_end = 6,
tooltip_text = _("Characters Left"),
css_classes = { "heading" }
css_classes = { "heading", "numeric" }
};
bottom_bar.pack_end (char_counter);
editor.buffer.paste_done.connect (on_paste);
Expand Down

0 comments on commit 1f46223

Please sign in to comment.