Darktide Mod Manager #39

Merged
lucas merged 91 commits from feat/dtmm into master 2023-03-01 22:27:42 +01:00
Showing only changes of commit f7627c091b - Show all commits

View file

@ -265,13 +265,11 @@ fn build_log_view() -> impl Widget<State> {
let label = Label::raw() let label = Label::raw()
.with_font(font) .with_font(font)
.with_line_break_mode(LineBreaking::WordWrap) .with_line_break_mode(LineBreaking::WordWrap)
.lens(State::log); .lens(State::log)
SizedBox::new(label)
.expand_width()
.height(128.0)
.scroll() .scroll()
.vertical() .vertical();
SizedBox::new(label).expand_width().height(128.0)
} }
fn build_window() -> impl Widget<State> { fn build_window() -> impl Widget<State> {