Skip to content
Open
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
7 changes: 4 additions & 3 deletions src/libresplit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ impl LibreSplitFile {
splits.push(split);
}

// Get size. Default for now.
let width = 600;
let height = 800;
// Get size.
// The window of LibreSplit will not shrink beyond this size.
let width = 60;
let height = 80;

LibreSplitFile {
title,
Expand Down