diff --git a/data/gnome-shell-theme.gresource.xml b/data/gnome-shell-theme.gresource.xml index 8cb4990b7..45cb9fc77 100644 --- a/data/gnome-shell-theme.gresource.xml +++ b/data/gnome-shell-theme.gresource.xml @@ -41,5 +41,8 @@ toggle-on-hc.svg toggle-on-light.svg workspace-placeholder.svg + screenshot-ui-area-symbolic.svg + screenshot-ui-display-symbolic.svg + screenshot-ui-window-symbolic.svg diff --git a/data/theme/screenshot-ui-area-symbolic.svg b/data/theme/screenshot-ui-area-symbolic.svg new file mode 100644 index 000000000..627288d8b --- /dev/null +++ b/data/theme/screenshot-ui-area-symbolic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/theme/screenshot-ui-display-symbolic.svg b/data/theme/screenshot-ui-display-symbolic.svg new file mode 100644 index 000000000..5c740ab50 --- /dev/null +++ b/data/theme/screenshot-ui-display-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + diff --git a/data/theme/screenshot-ui-window-symbolic.svg b/data/theme/screenshot-ui-window-symbolic.svg new file mode 100644 index 000000000..c9124a4bb --- /dev/null +++ b/data/theme/screenshot-ui-window-symbolic.svg @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/js/ui/screenshot.js b/js/ui/screenshot.js index a00bcc3b3..dbb993e74 100644 --- a/js/ui/screenshot.js +++ b/js/ui/screenshot.js @@ -962,7 +962,7 @@ class ScreenshotUI extends St.Widget { }); this._panel.add_child(this._typeButtonContainer); - this._selectionButton = new IconLabelButton('input-mouse-symbolic', _('Selection'), { + this._selectionButton = new IconLabelButton('screenshot-ui-area-symbolic', _('Selection'), { style_class: 'screenshot-ui-type-button', checked: true, x_expand: true, @@ -971,7 +971,7 @@ class ScreenshotUI extends St.Widget { this._onSelectionButtonToggled.bind(this)); this._typeButtonContainer.add_child(this._selectionButton); - this._screenButton = new IconLabelButton('video-display-symbolic', _('Screen'), { + this._screenButton = new IconLabelButton('screenshot-ui-display-symbolic', _('Screen'), { style_class: 'screenshot-ui-type-button', toggle_mode: true, x_expand: true, @@ -980,7 +980,7 @@ class ScreenshotUI extends St.Widget { this._onScreenButtonToggled.bind(this)); this._typeButtonContainer.add_child(this._screenButton); - this._windowButton = new IconLabelButton('focus-windows-symbolic', _('Window'), { + this._windowButton = new IconLabelButton('screenshot-ui-window-symbolic', _('Window'), { style_class: 'screenshot-ui-type-button', toggle_mode: true, x_expand: true,