Skip to content

Commit

Permalink
Update glyph-pane layout spacing (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliheuer authored Jul 5, 2021
1 parent 08959b5 commit 99184d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runebender-lib/src/widgets/glyph_pane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ fn build_widget() -> impl Widget<EditorState> {
GlyphPainter::new()
.color(theme::SECONDARY_TEXT_COLOR)
.draw_layout_frame(true)
.fix_height(40.0)
.padding((0., 8.0))
.fix_height(200.0)
.padding((8.0, 8.0))
.lens(EditorState::detail_glyph),
)
.with_child(
Expand All @@ -94,5 +94,5 @@ fn build_widget() -> impl Widget<EditorState> {
.lens(EditorState::detail_glyph.then(GlyphDetail::advance))
.fix_width(40.0),
)
.padding(4.0)
.padding(8.0)
}

0 comments on commit 99184d2

Please sign in to comment.