Skip to content

Commit 9a6e58b

Browse files
committed
Use Granite Bin
1 parent c15ebfa commit 9a6e58b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/BaseIconGroup.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public abstract class Dock.BaseIconGroup : BaseItem {
2525
};
2626
flow_box.bind_model (slice, create_flow_box_child);
2727

28-
var bin = new Adw.Bin () {
28+
var bin = new Granite.Bin () {
2929
child = flow_box
3030
};
3131
bin.add_css_class ("icon-group-bin");

src/WorkspaceSystem/DynamicWorkspaceItem.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public class Dock.DynamicWorkspaceIcon : BaseItem {
1919
};
2020
add_image.add_css_class ("add-image");
2121

22-
// Adw.Bin is used here to keep css nodes consistent with IconGroup
23-
var bin = new Adw.Bin () {
22+
// Granite.Bin is used here to keep css nodes consistent with IconGroup
23+
var bin = new Granite.Bin () {
2424
child = add_image
2525
};
2626
bin.add_css_class ("icon-group-bin");

0 commit comments

Comments
 (0)