Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 204838
b: refs/heads/master
c: c10d03c
h: refs/heads/master
v: v3
  • Loading branch information
Li Zefan authored and Michal Marek committed Jun 2, 2010
1 parent c2c916f commit ef8d9fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e0bb7fe2d7e6d7cfa6135fa9ca5634343fff63b5
refs/heads/master: c10d03caf303d91da07c7f093a4822453c13f9b1
5 changes: 3 additions & 2 deletions trunk/scripts/kconfig/gconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,8 @@ static void update_tree(struct menu *src, GtkTreeIter * dst)
#endif

if ((opt_mode == OPT_NORMAL && !menu_is_visible(child1)) ||
(opt_mode == OPT_PROMPT && !menu_has_prompt(child1))) {
(opt_mode == OPT_PROMPT && !menu_has_prompt(child1)) ||
(opt_mode == OPT_ALL && !menu_get_prompt(child1))) {

/* remove node */
if (gtktree_iter_find_node(dst, menu1) != NULL) {
Expand Down Expand Up @@ -1425,7 +1426,7 @@ static void display_tree(struct menu *menu)

if ((opt_mode == OPT_NORMAL && menu_is_visible(child)) ||
(opt_mode == OPT_PROMPT && menu_has_prompt(child)) ||
(opt_mode == OPT_ALL))
(opt_mode == OPT_ALL && menu_get_prompt(child)))
place_node(child, fill_row(child));
#ifdef DEBUG
printf("%*c%s: ", indent, ' ', menu_get_prompt(child));
Expand Down

0 comments on commit ef8d9fc

Please sign in to comment.