Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

### Fixes
- fixed auto refresh stopping to work when changing the logs path
- fixed the program crashing on Linux/Wayland when the overlay is switched on

## v1.4.0
### Major Changes
Expand Down
5 changes: 4 additions & 1 deletion src/app/overlay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ impl Overlay {
Self(Arc::new(Mutex::new(OverlayInner {
move_around: true,
columns: COLUMNS.iter().cloned().collect(),
current_size: Vec2::ZERO,
// Must start non-zero: Wayland rejects a 0x0 xdg_surface geometry,
// which crashes wgpu ("Surface is not configured for presentation").
// Matches the min_inner_size used when building the viewport below.
current_size: vec2(240.0, 80.0),
data: Default::default(),
position: None,
show: false,
Expand Down