summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-01-18 17:56:07 -0500
committerMatthias Clasen <mclasen@redhat.com>2015-01-18 17:57:12 -0500
commitdcd3d1538021c15c788b4d639b3dc671495e63ae (patch)
tree3922cc2943ca2d01f874e18b96d0bebc8db22458
parent4b47c5a64999d5d24abe1e516324b4c95c35f6f0 (diff)
downloadgtk+-dcd3d1538021c15c788b4d639b3dc671495e63ae.tar.gz
file chooser: Drop the location label
Bringing us close to the new design.
-rw-r--r--gtk/gtkfilechooserwidget.c6
-rw-r--r--gtk/ui/gtkfilechooserwidget.ui13
-rw-r--r--gtk/ui/gtkfilechooserwidget.ui.h1
3 files changed, 3 insertions, 17 deletions
diff --git a/gtk/gtkfilechooserwidget.c b/gtk/gtkfilechooserwidget.c
index f3cdd4c76d..40c72806b1 100644
--- a/gtk/gtkfilechooserwidget.c
+++ b/gtk/gtkfilechooserwidget.c
@@ -250,7 +250,6 @@ struct _GtkFileChooserWidgetPrivate {
GtkWidget *extra_widget;
GtkWidget *location_entry_box;
- GtkWidget *location_label;
GtkWidget *location_entry;
LocationMode location_mode;
@@ -1971,6 +1970,9 @@ location_entry_create (GtkFileChooserWidget *impl)
if (!priv->location_entry)
{
priv->location_entry = _gtk_file_chooser_entry_new (TRUE);
+ if (priv->action == GTK_FILE_CHOOSER_ACTION_OPEN ||
+ priv->action == GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER)
+ gtk_entry_set_placeholder_text (GTK_ENTRY (priv->location_entry), _("Location"));
g_signal_connect (priv->location_entry, "changed",
G_CALLBACK (location_entry_changed_cb), impl);
}
@@ -2086,7 +2088,6 @@ location_switch_to_filename_entry (GtkFileChooserWidget *impl)
{
location_entry_create (impl);
gtk_box_pack_start (GTK_BOX (priv->location_entry_box), priv->location_entry, TRUE, TRUE, 0);
- gtk_label_set_mnemonic_widget (GTK_LABEL (priv->location_label), priv->location_entry);
}
/* Configure the entry */
@@ -7425,7 +7426,6 @@ gtk_file_chooser_widget_class_init (GtkFileChooserWidgetClass *class)
gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, extra_align);
gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, extra_and_filters);
gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, location_entry_box);
- gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, location_label);
gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, search_bar);
gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, search_entry);
gtk_widget_class_bind_template_child_private (widget_class, GtkFileChooserWidget, list_name_column);
diff --git a/gtk/ui/gtkfilechooserwidget.ui b/gtk/ui/gtkfilechooserwidget.ui
index b5d60b1e50..61b7635a2b 100644
--- a/gtk/ui/gtkfilechooserwidget.ui
+++ b/gtk/ui/gtkfilechooserwidget.ui
@@ -105,19 +105,6 @@
<property name="spacing">12</property>
<property name="border_width">6</property>
<child>
- <object class="GtkLabel" id="location_label">
- <property name="visible">True</property>
- <property name="can_focus">False</property>
- <property name="label" translatable="yes">_Location:</property>
- <property name="use_underline">True</property>
- </object>
- <packing>
- <property name="expand">False</property>
- <property name="fill">False</property>
- <property name="position">0</property>
- </packing>
- </child>
- <child>
<placeholder/>
</child>
</object>
diff --git a/gtk/ui/gtkfilechooserwidget.ui.h b/gtk/ui/gtkfilechooserwidget.ui.h
index 2c65d51d85..9c8a16ad2f 100644
--- a/gtk/ui/gtkfilechooserwidget.ui.h
+++ b/gtk/ui/gtkfilechooserwidget.ui.h
@@ -1,5 +1,4 @@
N_("Create Fo_lder");
-N_("_Location:");
N_("Files");
N_("Name");
N_("Size");