[2850] in Release_Engineering
another (minor) dash fix.
daemon@ATHENA.MIT.EDU (vanharen@MIT.EDU)
Tue Jun 2 10:17:05 1992
From: vanharen@MIT.EDU
Date: Tue, 2 Jun 92 10:16:49 EDT
To: rel-eng@MIT.EDU
Cc: cfields@MIT.EDU
Dash's clock is set to update every five seconds, rather than one, to
avoid a "phantom load" problem, if you recall. However, this caused the
clock in the menubar not to be updated until that fifth second rolls
around.
It turns out that there is code in the menubar to refresh the clock when
needed, it is simply that the order of creation of the Jets is
incorrect, and so that code was never being executed.
The following patch to the Dash app-defs file changes that, and so
causes dash to refresh the clock in the menubar correctly upon an
expose.
This is a minor, aesthetic fix, and should be treated as such. However,
since it is only an app-defs change, it should be easy to install and it
would be nice to have... :-)
-C.
==============================================================================
*** Dash Tue Jun 2 10:09:37 1992
--- /source/athena/athena.bin/dash/Dash Mon May 18 10:56:48 1992
***************
*** 125,132 ****
{ \
Window window; \
{ \
- DigitalClock menuClock; \
Menu menuBar; \
} \
}
--- 125,132 ----
{ \
Window window; \
{ \
Menu menuBar; \
+ DigitalClock menuClock; \
} \
}