all repos — openbox @ ad29434250f6c34ed2af8f99bed7a4e8d6b5053b

openbox fork - make it a bit more like ryudo

remove the dialog options
Dana Jansens danakj@orodu.net
commit

ad29434250f6c34ed2af8f99bed7a4e8d6b5053b

parent

90445487e12635f68393d0093f1a03f1ee57f0e2

4 files changed, 2 insertions(+), 25 deletions(-)

jump to
M openbox/config.copenbox/config.c

@@ -343,19 +343,6 @@ g_free(str);

} } -static void parse_dialog(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, - void *d) -{ - xmlNodePtr n; - - node = node->children; - - if ((n = parse_find_node("focus", node))) - config_dialog_focus = parse_bool(doc, n); - if ((n = parse_find_node("desktop", node))) - config_dialog_desktop = parse_bool(doc, n); -} - static void parse_menu(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, void *d) { for (node = node->children; node; node = node->next) {

@@ -541,11 +528,6 @@ config_resist_win = 10;

config_resist_edge = 20; parse_register(i, "resistance", parse_resistance, NULL); - - config_dialog_focus = TRUE; - config_dialog_desktop = TRUE; - - parse_register(i, "dialog", parse_dialog, NULL); config_menu_files = NULL;
M openbox/config.hopenbox/config.h

@@ -93,11 +93,6 @@ extern gint config_resist_win;

/*! Number of pixels to resist while crossing a screen's edge */ extern gint config_resist_edge; -/*! Show a dialog while cycling focus between windows */ -extern gboolean config_dialog_focus; -/*! Show a dialogs while switching between desktops */ -extern gboolean config_dialog_desktop; - /*! User-specified menu files */ extern GSList *config_menu_files;
M openbox/focus.copenbox/focus.c

@@ -232,7 +232,7 @@ }

static void popup_cycle(ObClient *c, gboolean show) { - if (!show || !config_dialog_focus) { + if (!show) { icon_popup_hide(focus_cycle_popup); } else { Rect *a;
M openbox/screen.copenbox/screen.c

@@ -572,7 +572,7 @@ void screen_desktop_popup(guint d, gboolean show)

{ Rect *a; - if (!show || !config_dialog_desktop) { + if (!show) { pager_popup_hide(desktop_cycle_popup); } else { a = screen_physical_area_monitor(0);