diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/eom-properties-dialog.c | 10 | ||||
-rw-r--r-- | src/eom.gresource.xml | 1 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/eom-properties-dialog.c b/src/eom-properties-dialog.c index be376c9..a6c3cf0 100644 --- a/src/eom-properties-dialog.c +++ b/src/eom-properties-dialog.c @@ -569,13 +569,11 @@ eom_properties_dialog_class_init (EomPropertiesDialogClass *klass) G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); - gchar* data; - gsize data_size; - g_file_get_contents(g_build_filename (EOM_DATA_DIR, "eom-image-properties-dialog.ui", NULL), &data, &data_size, NULL); - GBytes *bytes = g_bytes_new_static(data, data_size); - gtk_widget_class_set_template((GtkWidgetClass *) klass, bytes); - GtkWidgetClass *wklass = (GtkWidgetClass*) klass; + + gtk_widget_class_set_template_from_resource (wklass, + "/org/mate/eom/ui/eom-image-properties-dialog.ui"); + gtk_widget_class_bind_template_child_private(wklass, EomPropertiesDialog, notebook); diff --git a/src/eom.gresource.xml b/src/eom.gresource.xml index a4a9fe3..8a10c9f 100644 --- a/src/eom.gresource.xml +++ b/src/eom.gresource.xml @@ -2,6 +2,7 @@ <gresources> <gresource prefix="/org/mate/eom/ui"> <file>eom.css</file> + <file compressed="true" preprocess="xml-stripblanks">eom-image-properties-dialog.ui</file> <file compressed="true" preprocess="xml-stripblanks">eom-ui.xml</file> <file compressed="true" preprocess="xml-stripblanks">metadata-sidebar.ui</file> </gresource> |