From: Dana Jansens Date: Tue, 30 Aug 2011 15:14:06 +0000 (-0400) Subject: Make "no" a valid choice for the dialog option in cyclewindows.c. X-Git-Tag: mikabox-3.5-7~116 X-Git-Url: http://git.openbox.org/?p=mikachu%2Fopenbox.git;a=commitdiff_plain;h=8e4fcae64d029fbe5f0edc444b0152d6d4b512e3 Make "no" a valid choice for the dialog option in cyclewindows.c. It is the same as "none" for backward compatibility (it used to be a boolean). --- diff --git a/openbox/actions/cyclewindows.c b/openbox/actions/cyclewindows.c index bbcb658..5f0db27 100644 --- a/openbox/actions/cyclewindows.c +++ b/openbox/actions/cyclewindows.c @@ -75,6 +75,8 @@ static gpointer setup_func(xmlNodePtr node, if ((n = obt_xml_find_node(node, "dialog"))) { if (obt_xml_node_contains(n, "none")) o->dialog_mode = OB_FOCUS_CYCLE_POPUP_MODE_NONE; + else if (obt_xml_node_contains(n, "no")) + o->dialog_mode = OB_FOCUS_CYCLE_POPUP_MODE_NONE; else if (obt_xml_node_contains(n, "icons")) o->dialog_mode = OB_FOCUS_CYCLE_POPUP_MODE_ICONS; }