Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/6691.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Increased width to fit elements
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ def hide_tooltip(self): # pragma: no cover
EXTENSION_TITLE = "Extension Manager"

# Default width and height for the extension window
WIDTH = 800
WIDTH = 900
HEIGHT = 450

# Maximum dimensions for the extension window
MAX_WIDTH = 800
MAX_WIDTH = 900
MAX_HEIGHT = 550

# Minimum dimensions for the extension window
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/extensions/test_extension_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ def test_extension_manager_default_settings(mock_toolkits, mock_desktop, mock_ae
extension = ExtensionManager(withdraw=True)

assert EXTENSION_TITLE == "Extension Manager"
assert WIDTH == 800
assert WIDTH == 900
assert HEIGHT == 450
assert MAX_WIDTH == 800
assert MAX_WIDTH == 900
assert MAX_HEIGHT == 550
assert MIN_WIDTH == 600
assert MIN_HEIGHT == 400
Expand Down
Loading