Skip to content

Commit

Permalink
feat(ProfileCover): use verified-checkmark for verified fields (#740)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr authored Feb 20, 2024
1 parent c81c730 commit bae908c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions data/gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
<file preprocess="xml-stripblanks">icons/scalable/actions/tuba-markdown-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tuba-rich-text-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tuba-earth-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/tuba-verified-checkmark-symbolic.svg</file>
<!-- <file preprocess="xml-stripblanks">icons/scalable/actions/tuba-language-symbolic.svg</file> -->

<file>gtk/help-overlay.ui</file>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Widgets/ProfileCover.vala
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ protected class Tuba.Widgets.Cover : Gtk.Box {
if (f.verified_at != null) {
var verified_date = f.verified_at.slice (0, f.verified_at.last_index_of ("T"));
var verified_label_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6);
var verified_checkmark = new Gtk.Image.from_icon_name ("tuba-check-round-outline-symbolic") {
var verified_checkmark = new Gtk.Image.from_icon_name ("tuba-verified-checkmark-symbolic") {
tooltip_text = _(@"Ownership of this link was checked on $verified_date")
};

Expand Down

0 comments on commit bae908c

Please sign in to comment.