forked from AuroraMiddleware/gtk
filechooser: use the sidebar style class for the file chooser sidebar
https://bugzilla.gnome.org/show_bug.cgi?id=642712
This commit is contained in:
parent
195a235cd4
commit
f7ee81bff8
@ -3603,6 +3603,7 @@ shortcuts_list_create (GtkFileChooserDefault *impl)
|
|||||||
GtkTreeSelection *selection;
|
GtkTreeSelection *selection;
|
||||||
GtkTreeViewColumn *column;
|
GtkTreeViewColumn *column;
|
||||||
GtkCellRenderer *renderer;
|
GtkCellRenderer *renderer;
|
||||||
|
GtkStyleContext *style;
|
||||||
|
|
||||||
/* Target types for dragging a row to/from the shortcuts list */
|
/* Target types for dragging a row to/from the shortcuts list */
|
||||||
const GtkTargetEntry tree_model_row_targets[] = {
|
const GtkTargetEntry tree_model_row_targets[] = {
|
||||||
@ -3619,8 +3620,9 @@ shortcuts_list_create (GtkFileChooserDefault *impl)
|
|||||||
gtk_widget_show (swin);
|
gtk_widget_show (swin);
|
||||||
|
|
||||||
/* Tree */
|
/* Tree */
|
||||||
|
|
||||||
impl->browse_shortcuts_tree_view = gtk_tree_view_new ();
|
impl->browse_shortcuts_tree_view = gtk_tree_view_new ();
|
||||||
|
gtk_style_context_add_class (gtk_widget_get_style_context (impl->browse_shortcuts_tree_view),
|
||||||
|
GTK_STYLE_CLASS_SIDEBAR);
|
||||||
gtk_tree_view_set_enable_search (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), FALSE);
|
gtk_tree_view_set_enable_search (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), FALSE);
|
||||||
#ifdef PROFILE_FILE_CHOOSER
|
#ifdef PROFILE_FILE_CHOOSER
|
||||||
g_object_set_data (G_OBJECT (impl->browse_shortcuts_tree_view), "fmq-name", "shortcuts");
|
g_object_set_data (G_OBJECT (impl->browse_shortcuts_tree_view), "fmq-name", "shortcuts");
|
||||||
|
Loading…
Reference in New Issue
Block a user