Sun Nov 7 18:20:16 PST 1999

(Mandrake)

fixed bug reported by ljlane@debian.org - icons still showed named when show
names was turned off.


SVN revision: 1206
This commit is contained in:
Mandrake 1999-11-07 16:30:16 +00:00
parent 399e5273a3
commit ac651982c8
3 changed files with 26 additions and 20 deletions

View File

@ -3920,3 +3920,11 @@ Sat Nov 6 16:09:57 PST 1999
Fixed a bug where selecting a window on another desktop using kpanel wouldn't
change the current desktop in kpanel (workaround for kpanel bug)
-------------------------------------------------------------------------------
Sun Nov 7 18:20:16 PST 1999
(Mandrake)
fixed bug reported by ljlane@debian.org - icons still showed named when show
names was turned off.

View File

@ -272,7 +272,6 @@ IconifyEwin(EWin * ewin)
}
}
}
call_depth--;
KDE_UpdateClient(ewin);
@ -345,7 +344,6 @@ DeIconifyEwin(EWin * ewin)
}
}
}
call_depth--;
KDE_UpdateClient(ewin);
@ -1150,8 +1148,8 @@ SelectIconboxForEwin(EWin * ewin)
/* If there are no iconboxes, create one. */
doCreateIconbox(NULL);
ib = ListAllIconboxes(&num);
if (ib) /* paranoia */
{
if (ib)
{ /* paranoia */
ib_sel = ib[0];
Efree(ib);
}
@ -1840,7 +1838,6 @@ RedrawIconbox(Iconbox * ib)
was_shaded = 1;
UnShadeEwin(ib->ewin);
}
x = ib->ewin->x;
y = ib->ewin->y;
w = ib->ewin->client.w;
@ -2583,25 +2580,27 @@ IconboxHandleEvent(XEvent * ev)
}
if (ewin != name_ewin)
{
tt = FindItem("ICONBOX", 0, LIST_FINDBY_NAME,
LIST_TYPE_TOOLTIP);
if (tt)
if (ib[i]->shownames)
{
name_ewin = ewin;
HideToolTip(tt);
if (ewin)
tt = FindItem("ICONBOX", 0, LIST_FINDBY_NAME,
LIST_TYPE_TOOLTIP);
if (tt)
{
if ((ewin->client.icon_name) &&
(strlen(ewin->client.icon_name) > 0))
ShowToolTip(tt, ewin->client.icon_name,
NULL, mode.x, mode.y);
else
ShowToolTip(tt, ewin->client.title,
NULL, mode.x, mode.y);
name_ewin = ewin;
HideToolTip(tt);
if (ewin)
{
if ((ewin->client.icon_name) &&
(strlen(ewin->client.icon_name) > 0))
ShowToolTip(tt, ewin->client.icon_name,
NULL, mode.x, mode.y);
else
ShowToolTip(tt, ewin->client.title,
NULL, mode.x, mode.y);
}
}
}
}
}
else if (ev->type == LeaveNotify)
{

View File

@ -1341,7 +1341,6 @@ SettingsKDE(void)
ShowDialog(d);
return;
}
tmp_kde = mode.kde_support;
d = CreateDialog("CONFIGURE_KDE");