Skip to content

Commit

Permalink
Set dark theme always, for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmackdev committed Sep 4, 2023
1 parent d42c8fb commit 76ed1a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pubsubman/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ async fn main() -> eframe::Result<()> {

let args = Args::parse();

let native_options = eframe::NativeOptions::default();
let native_options = eframe::NativeOptions {
follow_system_theme: false,
..Default::default()
};

eframe::run_native(
"pubsubman",
native_options,
Expand Down

0 comments on commit 76ed1a2

Please sign in to comment.