gconfig: fix to tag NEW symbols correctly
[pandora-kernel.git] / scripts / kconfig / gconf.c
index bef1041..1b18329 100644 (file)
@@ -1114,7 +1114,7 @@ static gchar **fill_row(struct menu *menu)
 
        row[COL_OPTION] =
            g_strdup_printf("%s %s", _(menu_get_prompt(menu)),
-                           sym && sym_has_value(sym) ? "(NEW)" : "");
+                           sym && !sym_has_value(sym) ? "(NEW)" : "");
 
        if (opt_mode == OPT_ALL && !menu_is_visible(menu))
                row[COL_COLOR] = g_strdup("DarkGray");