Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/granite.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<issues>
<issue url="https://github.com/elementary/granite/issues/742">adw-entry-apply-symbolic</issue>
<issue url="https://github.com/elementary/granite/issues/802">Provide native support for libshumate</issue>
<issue url="https://github.com/elementary/granite/issues/874">Default icon themes by non-Pantheon desktops may have missing icons or use incorrect icons</issue>
<issue url="https://github.com/elementary/granite/issues/883">PopoverAccelLabel styles broken in Demo</issue>
</issues>
</release>
Expand Down
8 changes: 4 additions & 4 deletions demo/Views/BoxView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class BoxView : DemoPage {
};

var single_box = new Granite.Box (HORIZONTAL);
single_box.append (new Gtk.Image.from_icon_name ("application-default-icon") { icon_size = LARGE });
single_box.append (new Gtk.Image.from_icon_name ("application-default-icon") { icon_size = LARGE });
single_box.append (new Gtk.Image.from_icon_name ("package-x-generic") { icon_size = LARGE });
single_box.append (new Gtk.Image.from_icon_name ("package-x-generic") { icon_size = LARGE });

var single_container = new Granite.Box (VERTICAL);
single_container.append (single_header);
Expand All @@ -24,8 +24,8 @@ public class BoxView : DemoPage {
};

var double_box = new Granite.Box (HORIZONTAL, DOUBLE);
double_box.append (new Gtk.Image.from_icon_name ("application-default-icon") { icon_size = LARGE });
double_box.append (new Gtk.Image.from_icon_name ("application-default-icon") { icon_size = LARGE });
double_box.append (new Gtk.Image.from_icon_name ("package-x-generic") { icon_size = LARGE });
double_box.append (new Gtk.Image.from_icon_name ("package-x-generic") { icon_size = LARGE });

var double_container = new Granite.Box (VERTICAL);
double_container.append (double_header);
Expand Down