Skip to content

Commit 8bf432d

Browse files
committed
fix: increase panel min size so that the save, cancel buttons are always visible
1 parent 241eba9 commit 8bf432d

File tree

1 file changed

+1
-1
lines changed
  • src/extensionsIntegrated/CustomSnippets

1 file changed

+1
-1
lines changed

src/extensionsIntegrated/CustomSnippets/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ define(function (require, exports, module) {
4141
const MY_COMMAND_ID = "custom_snippets";
4242
const PANEL_ID = "customSnippets.panel";
4343
const MENU_ITEM_NAME = "Custom Snippets..."; // this name will appear as the menu item
44-
const PANEL_MIN_SIZE = 100; // the minimum size more than which its height cannot be decreased
44+
const PANEL_MIN_SIZE = 340; // the minimum size more than which its height cannot be decreased
4545

4646
// this is to store the panel reference,
4747
// as we only need to create this once. rest of the time we can just toggle the visibility of the panel

0 commit comments

Comments
 (0)