diff --git a/NEWS.md b/NEWS.md index 79b65430..192e2684 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +PENDING: Gaupol 1.14 +==================== + +* Change the icon for the toggle video player toolbar item to an action + icon (not mimetype) that has a symbolic version available + 2023-10-08: Gaupol 1.13 ======================= diff --git a/gaupol/application.py b/gaupol/application.py index da65045c..3a842861 100644 --- a/gaupol/application.py +++ b/gaupol/application.py @@ -276,7 +276,7 @@ def _init_main_toolbar(self, vbox): self.main_toolbar.insert(button, -1) # win.toggle-player button = Gtk.ToggleToolButton( - label=_("Video"), icon_name="video-x-generic") + label=_("Video"), icon_name="camera-video") button.set_action_name("win.toggle-player") button.set_tooltip_text(_("Show or hide the video player")) self.main_toolbar.insert(button, -1)