From ea5e5db49009c52c496ce3649a73d8f6c5e8f986 Mon Sep 17 00:00:00 2001 From: "Luke D. Jones" Date: Sat, 7 Jan 2023 12:02:58 +1300 Subject: [PATCH] ROGCC: add note re: aura in gui --- rog-control-center/src/main.rs | 4 ++-- rog-control-center/src/widgets/aura_modes.rs | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/rog-control-center/src/main.rs b/rog-control-center/src/main.rs index 9148e76e..89f8bd5e 100644 --- a/rog-control-center/src/main.rs +++ b/rog-control-center/src/main.rs @@ -60,8 +60,8 @@ fn main() -> Result<()> { vsync: true, decorated: true, transparent: false, - min_window_size: Some(egui::vec2(900.0, 600.0)), - max_window_size: Some(egui::vec2(900.0, 600.0)), + min_window_size: Some(egui::vec2(960.0, 670.0)), + max_window_size: Some(egui::vec2(960.0, 670.0)), run_and_return: true, icon_data: Some(load_icon()), ..Default::default() diff --git a/rog-control-center/src/widgets/aura_modes.rs b/rog-control-center/src/widgets/aura_modes.rs index 70be2c7c..f8132059 100644 --- a/rog-control-center/src/widgets/aura_modes.rs +++ b/rog-control-center/src/widgets/aura_modes.rs @@ -35,6 +35,10 @@ pub fn aura_modes_group(states: &mut SystemState, freq: &mut Arc, ui: ui.heading(format!("{p:?}")); } else { ui.heading("Aura modes"); + ui.label( + "Please note that this section is incomplete and the displayed effects won't match \ + actual effect", + ); } let mut item = |a: AuraModeNum, ui: &mut Ui| { if ui