From 1998f8a6bc236784e149834077b74e98aa010148 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Tue, 3 Jan 2023 23:42:40 +0800 Subject: [PATCH] fix drag icon hidden because color is not set --- flutter/lib/desktop/widgets/remote_menubar.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/flutter/lib/desktop/widgets/remote_menubar.dart b/flutter/lib/desktop/widgets/remote_menubar.dart index 244822e19..ec17b1fbb 100644 --- a/flutter/lib/desktop/widgets/remote_menubar.dart +++ b/flutter/lib/desktop/widgets/remote_menubar.dart @@ -1422,7 +1422,8 @@ class __DraggableShowHideState extends State<_DraggableShowHide> { axis: Axis.horizontal, child: Icon( Icons.drag_indicator, - size: 15, + size: 20, + color: Colors.grey, ), feedback: widget, onDragStarted: (() { @@ -1465,7 +1466,7 @@ class __DraggableShowHideState extends State<_DraggableShowHide> { }), child: Obx((() => Icon( widget.show.isTrue ? Icons.expand_less : Icons.expand_more, - size: 15, + size: 20, ))), ), ], @@ -1478,7 +1479,7 @@ class __DraggableShowHideState extends State<_DraggableShowHide> { border: Border.all(color: MyTheme.border), ), child: SizedBox( - height: 15, + height: 20, child: child, ), ),