Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the correct icon in dependency-entry.blp for downloads #2948

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion bottles/frontend/ui/bottles.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<file alias="applications-system-symbolic.svg">../../../data/icons/symbolic/scalable/actions/applications-system-symbolic.svg</file>
<file alias="application-x-addon-symbolic.svg">../../../data/icons/symbolic/scalable/actions/application-x-addon-symbolic.svg</file>
<file alias="computer-symbolic.svg">../../../data/icons/symbolic/scalable/actions/computer-symbolic.svg</file>
<file alias="document-save-symbolic.svg">../../../data/icons/symbolic/scalable/actions/document-save-symbolic.svg</file>
<file alias="folder-download-symbolic.svg">../../../data/icons/symbolic/scalable/actions/folder-download-symbolic.svg</file>
<file alias="go-next-symbolic.svg">../../../data/icons/symbolic/scalable/actions/go-next-symbolic.svg</file>
<file alias="go-previous-symbolic.svg">../../../data/icons/symbolic/scalable/actions/go-previous-symbolic.svg</file>
<file alias="media-playback-start-symbolic.svg">../../../data/icons/symbolic/scalable/actions/media-playback-start-symbolic.svg</file>
Expand Down
4 changes: 2 additions & 2 deletions bottles/frontend/ui/component-entry.blp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ template ComponentEntry : .AdwActionRow {
visible: false;
tooltip-text: _("Download & Install");
valign: center;
icon-name: "document-save-symbolic";
icon-name: "folder-download-symbolic";

styles [
"flat",
Expand All @@ -59,7 +59,7 @@ template ComponentEntry : .AdwActionRow {
}

Image {
icon-name: "document-save-symbolic";
icon-name: "folder-download-symbolic";
}
}

Expand Down
2 changes: 1 addition & 1 deletion bottles/frontend/ui/dependency-entry.blp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ template DependencyEntry : .AdwActionRow {
valign: center;

Image {
icon-name: "document-save-symbolic";
icon-name: "folder-download-symbolic";
}

styles [
Expand Down
2 changes: 1 addition & 1 deletion bottles/frontend/ui/importer-entry.blp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ template ImporterEntry : .AdwActionRow {
valign: center;

Image {
icon-name: "document-save-symbolic";
icon-name: "folder-download-symbolic";
}

styles [
Expand Down
2 changes: 1 addition & 1 deletion bottles/frontend/ui/importer.blp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ template ImporterView : .AdwBin {
.AdwPreferencesPage {
.AdwStatusPage status_page {
vexpand: true;
icon-name: "document-save-symbolic";
icon-name: "folder-download-symbolic";
title: _("No Prefixes Found");
description: _("No external prefixes were found. Does Bottles have access to them?\nUse the icon on the top to import a bottle from a backup.");
}
Expand Down
2 changes: 1 addition & 1 deletion bottles/frontend/ui/installer-entry.blp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ template InstallerEntry : .AdwActionRow {
Button btn_install {
tooltip-text: _("Install this Program");
valign: center;
icon-name: "document-save-symbolic";
icon-name: "folder-download-symbolic";

styles [
"flat",
Expand Down
Loading