From f4b452e69c0b2238ba7a570f81765f511cd1c969 Mon Sep 17 00:00:00 2001 From: Guy Luz Date: Mon, 5 Feb 2024 04:23:48 +0200 Subject: [PATCH] Fixed colors tab reversed --- lib/presentation/molecules/devices/rgb_light_molecule.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/presentation/molecules/devices/rgb_light_molecule.dart b/lib/presentation/molecules/devices/rgb_light_molecule.dart index 819163f9..2eae827e 100644 --- a/lib/presentation/molecules/devices/rgb_light_molecule.dart +++ b/lib/presentation/molecules/devices/rgb_light_molecule.dart @@ -295,9 +295,9 @@ class _LightColorMods extends State { return Column( children: [ if (colorMode == ColorMode.white) - getHsvColorModeWidget() + getWhiteModeWidget() else if (colorMode == ColorMode.rgb) - getWhiteModeWidget(), + getHsvColorModeWidget(), const SeparatorAtom(variant: SeparatorVariant.reletedElements), Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly,