Skip to content

Commit

Permalink
fix: dictionary view scaling (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
GameTec-live authored Oct 10, 2023
1 parent 92cce15 commit 9dc97bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion chameleonultragui/lib/gui/menu/dictionary_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ class DictionaryViewMenuState extends State<DictionaryViewMenu> {
),
SizedBox(
height: MediaQuery.of(context).size.height * 0.5,
width: MediaQuery.of(context).size.width * 0.2,
width: MediaQuery.of(context).size.width < 600
? MediaQuery.of(context).size.width
: MediaQuery.of(context).size.width * 0.5,
child: ListView(
children: [
Text(
Expand Down

0 comments on commit 9dc97bf

Please sign in to comment.