Properly report errors in 'focus parent' (Thanks eeemsi)

Also, make X11 errors debug log level only. They are harmless usually.

fixes #762
This commit is contained in:
Michael Stapelberg
2012-08-05 20:56:33 +02:00
parent afc16953b9
commit 1b2d222449
3 changed files with 3 additions and 3 deletions

View File

@ -389,7 +389,7 @@ bool level_up(void) {
if ((focused->parent->type != CT_CON &&
focused->parent->type != CT_WORKSPACE) ||
focused->type == CT_WORKSPACE) {
LOG("Cannot go up any further\n");
ELOG("'focus parent': Focus is already on the workspace, cannot go higher than that.\n");
return false;
}
con_focus(focused->parent);