file chooser: Add a location column for search

In search, we show files from differnt locations, and it makes
sense to show where they come from. This makes the file chooser
more similar to nautilus, too.
This commit is contained in:
Matthias Clasen
2015-02-13 23:50:06 -05:00
parent 61012f3efe
commit 2c5ea0dd45
3 changed files with 63 additions and 1 deletions

View File

@ -228,6 +228,16 @@
</child>
</object>
</child>
<child>
<object class="GtkTreeViewColumn" id="list_location_column">
<property name="resizable">True</property>
<property name="visible">False</property>
<property name="title" translatable="yes">Location</property>
<child>
<object class="GtkCellRendererText" id="list_location_renderer"/>
</child>
</object>
</child>
</object>
</child>
</object>

View File

@ -3,4 +3,5 @@ N_("Files");
N_("Name");
N_("Size");
N_("Modified");
N_("Location");
N_("Select which types of files are shown");