continue commit 2b80e4e8ef
- remove debug code, and some unneeded stuff
This commit is contained in:
parent
bf259be653
commit
78cd9bba52
1 changed files with 1 additions and 22 deletions
|
@ -705,30 +705,9 @@ static void event_process(const XEvent *ec, gpointer data)
|
||||||
/* Otherwise only process it if it was physically on an openbox
|
/* Otherwise only process it if it was physically on an openbox
|
||||||
internal window */
|
internal window */
|
||||||
else {
|
else {
|
||||||
Window target, parent, root, *children;
|
|
||||||
unsigned int nchildren;
|
|
||||||
ObWindow *w;
|
ObWindow *w;
|
||||||
|
|
||||||
/* Find the top level ancestor of the subwindow, besides the
|
if ((w = g_hash_table_lookup(window_map, &e->xbutton.subwindow)) &&
|
||||||
root */
|
|
||||||
target = e->xbutton.subwindow;
|
|
||||||
ob_debug("subwindow 0x%x\n", target);
|
|
||||||
while (XQueryTree(ob_display, target, &root, &parent, &children,
|
|
||||||
&nchildren) != 0)
|
|
||||||
{
|
|
||||||
XFree(children);
|
|
||||||
if (parent == root) {
|
|
||||||
ob_debug("parent is root\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
target = parent;
|
|
||||||
}
|
|
||||||
ob_debug("toplevel 0x%x\n", target);
|
|
||||||
|
|
||||||
w = g_hash_table_lookup(window_map, &target);
|
|
||||||
ob_debug("w 0x%x\n", w);
|
|
||||||
|
|
||||||
if ((w = g_hash_table_lookup(window_map, &target)) &&
|
|
||||||
WINDOW_IS_INTERNAL(w))
|
WINDOW_IS_INTERNAL(w))
|
||||||
{
|
{
|
||||||
event_handle_user_input(client, e);
|
event_handle_user_input(client, e);
|
||||||
|
|
Loading…
Reference in a new issue