made scrollbars thinner by default

snap7
jmoenig 2021-07-09 08:01:34 +02:00
rodzic e6280f4751
commit 79e6e454aa
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -12,6 +12,7 @@
* libraries no longer rely on the JSF primitive, project may need to re-import their libraries to run without having to enable JS extensions
* retired Leap Motion library, took out Hummingbird library (get the current one from Birdbrain)
* display blocks with their error messages for custom blocks, thanks, Michael!
* made scrollbars thinner by default
* **Notable Fixes:**
* made scrollbars in the wardrobe and jukebox more responsive
* fixed centering of menus, thanks, Brian Broll!
@ -22,6 +23,7 @@
### 2021-07-09
* extensions: whitelisted 'https://snap.berkeley.edu/'
* morphic: made scrollbars thinner by default
### 2021-07-08
* objects: added category labels to unified palette

Wyświetl plik

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Snap! 7 - dev - Build Your Own Blocks</title>
<link rel="icon" href="src/favicon.ico">
<script src="src/morphic.js?version=2021-07-08"></script>
<script src="src/morphic.js?version=2021-07-09"></script>
<script src="src/symbols.js?version=2021-03-03"></script>
<script src="src/widgets.js?version=2021-07-05"></script>
<script src="src/blocks.js?version=2021-07-05"></script>

Wyświetl plik

@ -1291,7 +1291,7 @@
/*jshint esversion: 6*/
var morphicVersion = '2021-July-07';
var morphicVersion = '2021-July-09';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = true;
@ -1314,7 +1314,7 @@ var standardSettings = {
prompterFontSize: 12,
prompterSliderSize: 10,
handleSize: 15,
scrollBarSize: 12,
scrollBarSize: 9, // was 12,
mouseScrollAmount: 40,
useSliderForInput: false,
isTouchDevice: false, // turned on by touch events, don't set