Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnyp committed Oct 3, 2024
1 parent 7d75fc3 commit 41b5ffe
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 9 deletions.
7 changes: 6 additions & 1 deletion src/Library/Library.blp
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,13 @@ Adw.Window window {

DropDown dropdown_language {
valign: end;

model: Gtk.StringList {};
}

DropDown dropdown_category {
valign: end;

model: Gtk.StringList {};
}
}
Expand Down Expand Up @@ -105,7 +107,10 @@ Adw.Window window {
Button button_reset {
label: _("Reset filters");
halign: center;
styles ["pill"]

styles [
"pill"
]
}
}

Expand Down
36 changes: 28 additions & 8 deletions src/Permissions/Permissions.blp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ Adw.Dialog dialog {

Label {
label: _("Permissions Needed");
styles ["title-1"]

styles [
"title-1"
]
}

Label {
Expand Down Expand Up @@ -65,19 +68,28 @@ Adw.Dialog dialog {
Label {
label: _("What it does");
halign: start;
styles ["heading"]
hexpand: true;

styles [
"heading"
]
}

Button button_info {
styles ["flat"]
icon-name: "re.sonny.Workbench-external-link-symbolic";

styles [
"flat"
]
}
}

ListBox {
selection-mode: none;
styles ["boxed-list"]

styles [
"boxed-list"
]

Adw.ActionRow {
[prefix]
Expand All @@ -88,7 +100,9 @@ Adw.Dialog dialog {
title: _("--user");
subtitle: _("Grant for your account only");

styles ["property"]
styles [
"property"
]
}

Adw.ActionRow {
Expand All @@ -100,7 +114,9 @@ Adw.Dialog dialog {
title: _("--share-network");
subtitle: _("Network access");

styles ["property"]
styles [
"property"
]
}

Adw.ActionRow {
Expand All @@ -112,7 +128,9 @@ Adw.Dialog dialog {
title: _("--socket=pulseaudio");
subtitle: _("Record and play audio");

styles ["property"]
styles [
"property"
]
}

Adw.ActionRow {
Expand All @@ -124,7 +142,9 @@ Adw.Dialog dialog {
title: _("--device=input");
subtitle: _("Access to input device such as gamepads");

styles ["property"]
styles [
"property"
]
}
}
}
Expand Down

0 comments on commit 41b5ffe

Please sign in to comment.