We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3f9b82 commit 14a755cCopy full SHA for 14a755c
src/eom-exif-details.c
@@ -257,9 +257,12 @@ eom_exif_details_init (EomExifDetails *exif_details)
257
258
/* Value column */
259
cell = gtk_cell_renderer_text_new ();
260
- column = gtk_tree_view_column_new_with_attributes (_("Value"), cell,
261
- "text", MODEL_COLUMN_VALUE,
262
- NULL);
+ g_object_set (cell,
+ "editable", TRUE,
+ NULL);
263
+ column = gtk_tree_view_column_new_with_attributes (_("Value"), cell,
264
+ "text", MODEL_COLUMN_VALUE,
265
266
gtk_tree_view_append_column (GTK_TREE_VIEW (exif_details), column);
267
268
eom_exif_details_reset (exif_details);
0 commit comments