shp2pgsql-gui: don't allow the user to edit the schema name in the listview.

This brings the behaviour in line with that of the table name, and since
these entries are generated from the table selector there should be no
need to do this.

git-svn-id: http://svn.osgeo.org/postgis/trunk@9643 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Mark Cave-Ayland 2012-04-15 15:46:44 +00:00
parent ea300ebd9b
commit 6bfba6a7e3

View file

@ -3120,7 +3120,7 @@ pgui_create_export_table_table(GtkWidget *export_list_frame)
/* Schema Field */
export_schema_renderer = gtk_cell_renderer_text_new();
g_object_set(export_schema_renderer, "editable", TRUE, NULL);
g_object_set(export_schema_renderer, "editable", FALSE, NULL);
column_indexes[EXPORT_SCHEMA_COLUMN] = EXPORT_SCHEMA_COLUMN;
g_signal_connect(G_OBJECT(import_schema_renderer), "edited", G_CALLBACK(pgui_action_handle_loader_edit), &column_indexes[EXPORT_SCHEMA_COLUMN]);
export_schema_column = gtk_tree_view_column_new_with_attributes(_("Schema"),