#138 closed defect (done)
Starting multiple applications concurrently causes some of the splashscreens to stay visible
Reported by: | gkronber | Owned by: | gkronber |
---|---|---|---|
Priority: | medium | Milestone: | HeuristicLab 3.3.0 |
Component: | ZZZ OBSOLETE: PluginInfrastructure.GUI | Version: | 3.1 |
Keywords: | Cc: |
Description
Seems there is a synchronization problem in the splash-screen class.
Change History (9)
comment:1 Changed 16 years ago by gkronber
- Status changed from new to assigned
comment:2 Changed 16 years ago by gkronber
comment:3 Changed 16 years ago by gkronber
- Resolution set to fixed
- Status changed from assigned to closed
fixed with r596 by simplifying the SplashScreen. Using only one timer for the fadeout and this timer is started by a special event from the plugin infrastructure.
comment:4 Changed 16 years ago by gkronber
- Resolution fixed deleted
- Status changed from closed to reopened
This fix should be merged to 3.0 and 3.1 branch as well.
comment:5 Changed 16 years ago by gkronber
fixed in 3.0 branch with r598
comment:6 Changed 16 years ago by gkronber
- Resolution set to fixed
- Status changed from reopened to closed
fixed in 3.1 branch with r599
comment:7 Changed 16 years ago by swagner
- Milestone changed from 3.1 to Iteration 0
Milestone 3.1 deleted
comment:8 Changed 14 years ago by swagner
- Milestone changed from Iteration 0 to Current
Milestone Iteration 0 deleted
comment:11 Changed 14 years ago by swagner
- Milestone changed from Current to HeuristicLab 3.3.0
Milestone Current deleted
Note: See
TracTickets for help on using
tickets.
replaced windows forms timers with system.timer.timers with r595. This is necessary because windows forms timer works only in a single threaded environment with a UI message queue.