made scrollbars in the wardrobe and jukebox more responsive

snap7
jmoenig 2021-04-02 11:14:54 +02:00
rodzic 4544f28efd
commit a28244a976
3 zmienionych plików z 19 dodań i 10 usunięć

Wyświetl plik

@ -1,6 +1,19 @@
# Snap! (BYOB) History
## in development:
## in development for v7:
* **New Features:**
* Scenes
* **Notable Fixes:**
* made scrollbars in the wardrobe and jukebox more responsive
### 2021-04-01
* gui: made scrollbars in the wardrobe and jukebox more responsive
### 2021-04-01
* gui: made scene icons selectable
* gui: made scene icons observe the scene's stage versions
## 6.7.4 dev:
* **Notable Fixes:**
* fixed DEAL in the APL library, thanks, Brian!
* fixed a resizing edge case bug for the stage prompter (ASK command)
@ -10,10 +23,6 @@
* fixed DEAL in the APL library, thanks, Brian!
* objects: fixed a resizing edge case bug for the stage prompter (ASK command)
### 2021-04-01
* gui: made scene icons selectable
* gui: made scene icons observe the scene's stage versions
### 2021-03-31
* gui: tweaked scene icon settings
* gui: moved stage icon to the top of the corral

Wyświetl plik

@ -12,7 +12,7 @@
<script src="src/threads.js?version=2021-03-19"></script>
<script src="src/objects.js?version=2021-03-28"></script>
<script src="src/scenes.js?version=2021-03-30"></script>
<script src="src/gui.js?version=2021-04-01"></script>
<script src="src/gui.js?version=2021-04-02"></script>
<script src="src/paint.js?version=2021-03-17"></script>
<script src="src/lists.js?version=2021-03-15"></script>
<script src="src/byob.js?version=2021-03-05"></script>

Wyświetl plik

@ -83,7 +83,7 @@ Animation, BoxMorph, BlockEditorMorph, BlockDialogMorph, Note, ZERO, BLACK*/
// Global stuff ////////////////////////////////////////////////////////
modules.gui = '2021-April-1';
modules.gui = '2021-April-2';
// Declarations
@ -9469,7 +9469,7 @@ WardrobeMorph.prototype.init = function (aSprite, sliderColor) {
WardrobeMorph.uber.init.call(this, null, null, sliderColor);
// configure inherited properties
this.fps = 2;
// this.fps = 2; // commented out to make scrollbars more responsive
this.updateList();
};
@ -9935,7 +9935,7 @@ JukeboxMorph.prototype.init = function (aSprite, sliderColor) {
// configure inherited properties
this.acceptsDrops = false;
this.fps = 2;
// this.fps = 2; // commented out to make scrollbars more responsive
this.updateList();
};
@ -10295,7 +10295,7 @@ SceneAlbumMorph.prototype.init = function (anIDE, sliderColor) {
SceneAlbumMorph.uber.init.call(this, null, null, sliderColor);
// configure inherited properties
this.fps = 2;
// this.fps = 2; // commented out to make scrollbars more responsive
this.updateList();
this.updateSelection();
};