We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ece0039 commit 1397ac1Copy full SHA for 1397ac1
src/CanvasToolbar.vala
@@ -133,6 +133,9 @@ public class CanvasToolbar : Box {
133
margin_bottom = 5,
134
tooltip_markup = shape_type.tooltip(),
135
};
136
+ _canvas.win.theme_changed.connect((dark) => {
137
+ b.icon_name = shape_type.icon_name( dark );
138
+ });
139
b.clicked.connect(() => {
140
_current_item.get( category ).canvas_item( shape_type );
141
_current_item.get( category ).add_item( _canvas.items );
0 commit comments