Skip to content
Snippets Groups Projects
Verified Commit ed81f378 authored by Sophie Krause's avatar Sophie Krause :rabbit2:
Browse files

push local changes

parent 49102177
No related branches found
No related tags found
No related merge requests found
...@@ -6,4 +6,7 @@ ...@@ -6,4 +6,7 @@
<file preprocess="xml-stripblanks">create-card.ui</file> <file preprocess="xml-stripblanks">create-card.ui</file>
<file alias="appdata" compressed="true" preprocess="xml-stripblanks">li.sopht.Flashcards.metainfo.xml</file> <file alias="appdata" compressed="true" preprocess="xml-stripblanks">li.sopht.Flashcards.metainfo.xml</file>
</gresource> </gresource>
<gresource prefix="/li/sopht/flashcards/icons/scalable/actions/">
<file preprocess="xml-stripblanks">icons/hicolor/scalable/actions/add-card-symbolic.svg</file>
</gresource>
</gresources> </gresources>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 0 16 16" width="16px"><path d="m 7 3 v 4 h -4 v 2 h 4 v 4 h 2 v -4 h 4 v -2 h -4 v -4 z m 0 0" fill="#222222"/></svg>
...@@ -11,3 +11,12 @@ install_data( ...@@ -11,3 +11,12 @@ install_data(
symbolic_dir / ('@0@-symbolic.svg').format(application_id), symbolic_dir / ('@0@-symbolic.svg').format(application_id),
install_dir : get_option('datadir') / 'icons' / symbolic_dir install_dir : get_option('datadir') / 'icons' / symbolic_dir
) )
action_dir = 'hicolor' / 'scalable' / 'actions'
action_icons = [
action_dir / 'add-card-symbolic.svg',
]
install_data(
action_icons,
install_dir : get_option('datadir') / 'icons' / action_dir
)
\ No newline at end of file
...@@ -64,7 +64,7 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow { ...@@ -64,7 +64,7 @@ template $FlashcardsAppWindow : Adw.ApplicationWindow {
Adw.HeaderBar { Adw.HeaderBar {
[start] [start]
Gtk.Button add_card_button { Gtk.Button add_card_button {
icon-name: "list-add-symbolic"; icon-name: "add-card-symbolic";
clicked => $on_add_card(); clicked => $on_add_card();
tooltip-text: _("Add flashcard"); tooltip-text: _("Add flashcard");
visible: false; visible: false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment