Tue Oct 5 20:58:06 PDT 1999

(Mandrake)

hide any tooltips whenever we change desktops.


SVN revision: 678
This commit is contained in:
Mandrake 1999-10-06 00:46:32 +00:00
parent 1af05b2e72
commit c259db1820
2 changed files with 22 additions and 0 deletions

View File

@ -3087,3 +3087,10 @@ Tue Oct 5 16:21:56 PDT 1999
and let deskbindings tooltips work & add the tooltips into the defautl
keybindings.cfg
-------------------------------------------------------------------------------
Tue Oct 5 20:58:06 PDT 1999
(Mandrake)
hide any tooltips whenever we change desktops.

View File

@ -1486,6 +1486,21 @@ GotoDesktop(int num)
if (mode.slideout)
HideSlideout(mode.slideout, mode.context_win);
{
ToolTip **lst;
int i, j;
lst = (ToolTip **) ListItemType(&j, LIST_TYPE_TOOLTIP);
if (lst)
{
for (i = 0; i < j; i++)
{
HideToolTip(lst[i]);
}
Efree(lst);
}
}
if ((mode.mode == MODE_RESIZE) ||
(mode.mode == MODE_RESIZE_H) ||
(mode.mode == MODE_RESIZE_V))