ROGCC: style change

This commit is contained in:
Luke D. Jones
2022-07-26 22:35:51 +12:00
parent 85e08510f7
commit 5a54b830bf
2 changed files with 10 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 KiB

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -21,12 +21,12 @@ impl<'a> RogApp<'a> {
egui::Grid::new("id_source")
.min_col_width(rect.width() / 2.0)
.show(ui, |ui| {
if supported.platform_profile.platform_profile {
ui.vertical(|ui| {
ui.separator();
ui.vertical(|ui| {
ui.separator();
if supported.platform_profile.platform_profile {
platform_profile(states, dbus, ui);
});
}
}
});
ui.vertical(|ui| {
ui.separator();
@@ -39,12 +39,12 @@ impl<'a> RogApp<'a> {
rog_bios_group(supported, states, dbus, ui);
});
if supported.anime_ctrl.0 {
ui.vertical(|ui| {
ui.separator();
ui.vertical(|ui| {
ui.separator();
if supported.anime_ctrl.0 {
anime_power_group(supported, states, dbus, ui);
});
}
}
});
ui.end_row();
});
});