We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a889ae commit c313131Copy full SHA for c313131
1 file changed
src/ui.rs
@@ -117,6 +117,7 @@ pub(crate) fn draw_running_state(
117
}
118
119
ui.columns(2, |columns| {
120
+ columns[0].set_width(612 as f32);
121
ScrollArea::vertical()
122
.auto_shrink([false, false])
123
.show(&mut columns[0], |ui| {
@@ -130,6 +131,7 @@ pub(crate) fn draw_running_state(
130
131
});
132
133
134
+ columns[1].set_width(128 as f32);
135
columns[1].vertical(|ui| {
136
draw_control_buttons(app, ui, ctx, thread_running);
137
0 commit comments