diff options
Diffstat (limited to 'sendto/caja-sendto-command.c')
-rw-r--r-- | sendto/caja-sendto-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sendto/caja-sendto-command.c b/sendto/caja-sendto-command.c index 0d002cb..1b0d7da 100644 --- a/sendto/caja-sendto-command.c +++ b/sendto/caja-sendto-command.c @@ -531,8 +531,8 @@ caja_sendto_create_ui (void) GtkWidget *button_image; app = gtk_builder_new (); - if (!gtk_builder_add_from_file (app, UIDIR "/" "caja-sendto.ui", &error)) { - g_warning ("Couldn't load builder file: %s", error->message); + if (gtk_builder_add_from_resource (app, "/org/mate/caja/extensions/sendto/caja-sendto.ui", &error) == 0) { + g_warning ("Could not parse UI definition: %s", error->message); g_error_free (error); } |