The Inbox: Morphic-tpr.1616.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Morphic-tpr.1616.mcz

commits-2
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-tpr.1616.mcz

==================== Summary ====================

Name: Morphic-tpr.1616
Author: tpr
Time: 31 December 2019, 1:43:56.638985 pm
UUID: 4b649df1-02a9-4b01-a27b-da8e9a9b543a
Ancestors: Morphic-nice.1615

prevent the requested position from chaging if the progress bar is already open and in use; this should stop it leapingabout the screen like someone being pursued by angry Bees

=============== Diff against Morphic-nice.1615 ===============

Item was changed:
  ----- Method: SystemProgressMorph>>requestedPosition: (in category 'accessing') -----
  requestedPosition: anObject
+ "only change the progress bar position if this is an occasion when the progress bar is opening with a single active bar. After that we don't want to change the position and leap around the screen"
+ activeSlots < 1 ifTrue:[ requestedPosition := anObject]!
-
- requestedPosition := anObject!


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Morphic-tpr.1616.mcz

marcel.taeumel
+1

Best,
Marcel

Am 31.12.2019 22:44:22 schrieb [hidden email] <[hidden email]>:

A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-tpr.1616.mcz

==================== Summary ====================

Name: Morphic-tpr.1616
Author: tpr
Time: 31 December 2019, 1:43:56.638985 pm
UUID: 4b649df1-02a9-4b01-a27b-da8e9a9b543a
Ancestors: Morphic-nice.1615

prevent the requested position from chaging if the progress bar is already open and in use; this should stop it leapingabout the screen like someone being pursued by angry Bees

=============== Diff against Morphic-nice.1615 ===============

Item was changed:
----- Method: SystemProgressMorph>>requestedPosition: (in category 'accessing') -----
requestedPosition: anObject
+ "only change the progress bar position if this is an occasion when the progress bar is opening with a single active bar. After that we don't want to change the position and leap around the screen"
+ activeSlots < 1="" iftrue:[="" requestedposition="" :="">
-
- requestedPosition := anObject!