Skip to content

Commit

Permalink
Fix console lines width
Browse files Browse the repository at this point in the history
  • Loading branch information
ergrelet committed Mar 10, 2024
1 parent 90e9a43 commit d04a07f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resym/src/ui_components/console.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ impl ConsoleComponent {
ui.add(
egui::TextEdit::singleline(&mut self.content[row_index].as_str())
.font(TEXT_STYLE)
.clip_text(false),
.clip_text(false)
.desired_width(f32::INFINITY),
);
}
},
Expand Down

0 comments on commit d04a07f

Please sign in to comment.