Skip to content

Commit

Permalink
Oops forgot this one for the icon name change
Browse files Browse the repository at this point in the history
  • Loading branch information
heliguy4599 committed Dec 13, 2024
1 parent cddd7df commit 768db1a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/user_data_page/user_data_page.blp
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ template $UserDataPage : Adw.BreakpointBin {
[end]
MenuButton sort_button {
popover: sort_pop;
icon-name: "vertical-arrows-long-symbolic";
icon-name: "warehouse:vertical-arrows-long-symbolic";
tooltip-text: _("Sort User Data");
}
[end]
ToggleButton select_button {
icon-name: "selection-mode-symbolic";
icon-name: "warehouse:selection-mode-symbolic";
tooltip-text: _("Select User Data");
}
}
Expand All @@ -77,7 +77,7 @@ template $UserDataPage : Adw.BreakpointBin {
Button select_all_button {
styles ["raised"]
Adw.ButtonContent {
icon-name: "selection-mode-symbolic";
icon-name: "warehouse:selection-mode-symbolic";
label: _("Select All");
can-shrink: true;
}
Expand All @@ -86,7 +86,7 @@ template $UserDataPage : Adw.BreakpointBin {
sensitive: false;
styles ["raised"]
Adw.ButtonContent {
icon-name: "edit-copy-symbolic";
icon-name: "edit-warehouse:copy-symbolic";
label: _("Copy");
can-shrink: true;
}
Expand All @@ -96,7 +96,7 @@ template $UserDataPage : Adw.BreakpointBin {
sensitive: false;
styles ["raised"]
Adw.ButtonContent {
icon-name: "arrow-pointing-at-line-down-symbolic";
icon-name: "warehouse:arrow-pointing-at-line-down-symbolic";
label: _("Install");
can-shrink: true;
}
Expand All @@ -105,7 +105,7 @@ template $UserDataPage : Adw.BreakpointBin {
sensitive: false;
styles ["raised"]
Adw.ButtonContent {
icon-name: "user-trash-symbolic";
icon-name: "warehouse:user-trash-symbolic";
label: _("Trash");
can-shrink: true;
}
Expand All @@ -116,7 +116,7 @@ template $UserDataPage : Adw.BreakpointBin {
popover: more_popover;
styles ["raised"]
Adw.ButtonContent {
icon-name: "view-more-symbolic";
icon-name: "warehouse:view-more-symbolic";
label: _("More");
can-shrink: true;
}
Expand Down Expand Up @@ -165,15 +165,15 @@ Popover sort_pop {
ToggleButton sort_ascend {
styles ["flat"]
Adw.ButtonContent {
icon-name: "view-sort-ascending-symbolic";
icon-name: "warehouse:view-sort-ascending-symbolic";
label: _("Ascending");
}
}
ToggleButton sort_descend {
group: sort_ascend;
styles ["flat"]
Adw.ButtonContent {
icon-name: "view-sort-descending-symbolic";
icon-name: "warehouse:view-sort-descending-symbolic";
label: _("Descending");
}
}
Expand All @@ -186,23 +186,23 @@ Popover sort_pop {
ToggleButton sort_name {
styles ["flat"]
Adw.ButtonContent {
icon-name: "font-x-generic-symbolic";
icon-name: "warehouse:font-x-generic-symbolic";
label: _("Name");
}
}
ToggleButton sort_id {
group: sort_name;
styles ["flat"]
Adw.ButtonContent {
icon-name: "tag-outline-symbolic";
icon-name: "warehouse:tag-outline-symbolic";
label: _("ID");
}
}
ToggleButton sort_size {
group: sort_name;
styles ["flat"]
Adw.ButtonContent {
icon-name: "harddisk-symbolic";
icon-name: "warehouse:harddisk-symbolic";
label: _("Size");
}
}
Expand Down

0 comments on commit 768db1a

Please sign in to comment.