diff --git a/hesabixUI/hesabix_ui/lib/pages/profile/profile_shell.dart b/hesabixUI/hesabix_ui/lib/pages/profile/profile_shell.dart index 897a022..6d8c8f1 100644 --- a/hesabixUI/hesabix_ui/lib/pages/profile/profile_shell.dart +++ b/hesabixUI/hesabix_ui/lib/pages/profile/profile_shell.dart @@ -145,7 +145,7 @@ class _ProfileShellState extends State { final bool isHovered = i == _hoverIndex; final bool isSelected = i == selectedIndex; final bool active = isSelected || isHovered; - final double radius = isHovered ? 0 : 8; + final double radius = (isHovered && !isSelected) ? 0 : 8; return MouseRegion( onEnter: (_) => setState(() => _hoverIndex = i), onExit: (_) => setState(() => _hoverIndex = -1),