remove debug prints
This commit is contained in:
parent
dee3d68c22
commit
a434669d17
1 changed files with 0 additions and 4 deletions
|
@ -2674,8 +2674,6 @@ static ObClientIcon* client_icon_recursive(ObClient *self, int w, int h)
|
||||||
/* li is the largest image < req */
|
/* li is the largest image < req */
|
||||||
unsigned long size, smallest = 0xffffffff, largest = 0, si = 0, li = 0;
|
unsigned long size, smallest = 0xffffffff, largest = 0, si = 0, li = 0;
|
||||||
|
|
||||||
g_message("icons %d", self->nicons);
|
|
||||||
|
|
||||||
if (!self->nicons) {
|
if (!self->nicons) {
|
||||||
ObClientIcon *parent = NULL;
|
ObClientIcon *parent = NULL;
|
||||||
|
|
||||||
|
@ -2718,9 +2716,7 @@ const ObClientIcon* client_icon(ObClient *self, int w, int h)
|
||||||
ObClientIcon *ret;
|
ObClientIcon *ret;
|
||||||
static ObClientIcon deficon;
|
static ObClientIcon deficon;
|
||||||
|
|
||||||
g_message("going for broke");
|
|
||||||
if (!(ret = client_icon_recursive(self, w, h))) {
|
if (!(ret = client_icon_recursive(self, w, h))) {
|
||||||
g_message("using default");
|
|
||||||
deficon.width = deficon.height = 48;
|
deficon.width = deficon.height = 48;
|
||||||
deficon.data = ob_rr_theme->def_win_icon;
|
deficon.data = ob_rr_theme->def_win_icon;
|
||||||
ret = &deficon;
|
ret = &deficon;
|
||||||
|
|
Loading…
Reference in a new issue