X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Ftint2conf%2Fmain.c;h=8193a73a7e7b3c4f0674993b86a728a97952bbf4;hb=3c02bd129791a09ba87ad24212c8d33835a83319;hp=617eed940c08f5e7ea446024f4f7f7e2bdb859ad;hpb=7c0dfec2441c4a7da72150978425b6594a2b91a5;p=chaz%2Ftint2 diff --git a/src/tint2conf/main.c b/src/tint2conf/main.c index 617eed9..8193a73 100644 --- a/src/tint2conf/main.c +++ b/src/tint2conf/main.c @@ -33,6 +33,7 @@ #endif #include "common.h" #include "theme_view.h" +#include "properties.h" #define SNAPSHOT_TICK 190 @@ -105,8 +106,8 @@ static const char *global_ui = " " " " " " - " " " " + " " " " " " " " @@ -339,6 +340,12 @@ static void menuProperties() sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(g_theme_view)); if (gtk_tree_selection_get_selected(GTK_TREE_SELECTION(sel), &model, &iter)) { gtk_tree_model_get(model, &iter, COL_THEME_FILE, &file, -1); +/* + GtkWidget *prop; + prop = create_properties(); + gtk_window_present(GTK_WINDOW(prop)); + //printf("menuProperties : fin\n"); +*/ cmd = g_strdup_printf("%s \'%s\' &", g_cmd_property, file); printf("cmd %s\n", cmd); @@ -346,6 +353,7 @@ static void menuProperties() g_free(cmd); g_free(file); + } }