summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooserwidget.c
diff options
context:
space:
mode:
authorsunflowerskater <sunflowerskater@tutanota.com>2022-12-17 18:21:10 -0300
committersunflowerskater <sunflowerskater@tutanota.com>2022-12-17 18:21:10 -0300
commit6b71ccdb43f952c96a598a902271b180c900c604 (patch)
tree2f83674b1844744f0ac74a42e1d26868dd9cc99f /gtk/gtkfilechooserwidget.c
parentc81a793f634b23b04b6dd783f568ff0738eb9bce (diff)
downloadgtk+-6b71ccdb43f952c96a598a902271b180c900c604.tar.gz
GtkFileChooser: Tweak Grid View & List View button tooltips
The tooltips from the Grid View & List View buttons are unnecessarily long and look different from the tooltips used in Nautilus. This commit makes the tooltips to be consistent with Nautilus and, consequently, makes them shorter.
Diffstat (limited to 'gtk/gtkfilechooserwidget.c')
-rw-r--r--gtk/gtkfilechooserwidget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
index 70c4cabb84..ed85b0eb9e 100644
--- a/gtk/gtkfilechooserwidget.c
+++ b/gtk/gtkfilechooserwidget.c
@@ -1699,13 +1699,13 @@ set_view_type (GtkFileChooserWidget *impl,
case VIEW_TYPE_LIST:
child = impl->browse_files_column_view;
icon_name = "view-grid-symbolic";
- tooltip_text = _("Switch to grid view");
+ tooltip_text = _("Grid View");
break;
case VIEW_TYPE_GRID:
child = impl->browse_files_grid_view;
icon_name = "view-list-symbolic";
- tooltip_text = _("Switch to list view");
+ tooltip_text = _("List View");
break;
default: