diff --git a/HISTORY.md b/HISTORY.md index 4cf1035d..8fa325c5 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -43,6 +43,7 @@ ### 2021-10-14 * gui, byob, objects: scroll custom category buttons if there are more than 6 * gui, byob: scroll selected custom category button into view +* gui: fixed "show categories" setting display ### 2021-10-12 * scenes, store: store single palette setting per project (for making extensions) diff --git a/src/gui.js b/src/gui.js index 27002dea..a8f914f6 100644 --- a/src/gui.js +++ b/src/gui.js @@ -4190,7 +4190,7 @@ IDE_Morph.prototype.settingsMenu = function () { addPreference( 'Show categories', () => this.toggleCategoryNames(), - this.scene.unifiedPalette, + this.scene.showCategories, 'uncheck to hide\ncategory names\nin the palette', 'check to show\ncategory names\nin the palette' );