Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
ui(EditingPage): Use 2/3 for text field, 1/3 for preview
Browse files Browse the repository at this point in the history
Previously 1/2 and 1/2
  • Loading branch information
iakdis committed Mar 13, 2023
1 parent 264f8ed commit 62d7556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/pages/editing_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ class EditingPageState extends State<EditingPage> with WindowListener {
? Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(child: _textEditor()),
Expanded(flex: 2, child: _textEditor()),
if (showMarkdownViewer)
Expanded(child: _markdownViewer()),
],
Expand Down

0 comments on commit 62d7556

Please sign in to comment.