1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 05:10:03 -04:00

Revert "feat: Set whether to show decorations (#660)" (#671)

This reverts commit 0db74f3000.
This commit is contained in:
Emil Ernerfeldt
2021-08-28 12:29:19 +02:00
committed by GitHub
parent 776770cdcd
commit e98ae2ea7a
4 changed files with 1 additions and 25 deletions

View File

@@ -179,7 +179,6 @@ impl AppRunner {
http: runner.http.clone(),
output: &mut app_output,
repaint_signal: runner.needs_repaint.clone(),
decorated: false,
}
.build();
runner.app.setup(
@@ -252,7 +251,6 @@ impl AppRunner {
http: self.http.clone(),
output: &mut app_output,
repaint_signal: self.needs_repaint.clone(),
decorated: false,
}
.build();
@@ -268,7 +266,6 @@ impl AppRunner {
let epi::backend::AppOutput {
quit: _, // Can't quit a web page
window_size: _, // Can't resize a web page
decorated: _, // Can't show decorations
} = app_output;
}