Added
Link Here
|
1 |
Replace missing icons (Adwaita) |
2 |
|
3 |
--- src/MainWindow.vala.orig 2022-05-10 20:12:35 UTC |
4 |
+++ src/MainWindow.vala |
5 |
@@ -78,7 +78,7 @@ public class PantheonCalculator.MainWindow : Gtk.Appli |
6 |
history = new List<History?> (); |
7 |
position = 0; |
8 |
button_extended = new Gtk.ToggleButton () { |
9 |
- icon_name = "pane-hide-symbolic", |
10 |
+ icon_name = "pan-end-symbolic", |
11 |
tooltip_text = _("Show extended functionality") |
12 |
}; |
13 |
button_extended.toggled.connect (toggle_grid); |
14 |
@@ -731,12 +731,12 @@ public class PantheonCalculator.MainWindow : Gtk.Appli |
15 |
position = entry.get_position (); |
16 |
if (button.get_active ()) { |
17 |
/* Show extended functionality */ |
18 |
- button.icon_name = "pane-show-symbolic"; |
19 |
+ button.icon_name = "pan-start-symbolic"; |
20 |
button.tooltip_text = _("Hide extended functionality"); |
21 |
extended_revealer.reveal_child = true; |
22 |
} else { |
23 |
/* Hide extended functionality */ |
24 |
- button.icon_name = "pane-hide-symbolic"; |
25 |
+ button.icon_name = "pan-end-symbolic"; |
26 |
button.tooltip_text = _("Show extended functionality"); |
27 |
extended_revealer.reveal_child = false; |
28 |
} |