Skip to content

Commit

Permalink
Make tooltip delay longer
Browse files Browse the repository at this point in the history
  • Loading branch information
FeodorFitsner committed Apr 28, 2022
1 parent f367b0f commit c79054b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/lib/controls/create_control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ Widget _tooltip(Widget widget, Control? parent, Control control) {
? Tooltip(
message: tooltip,
child: widget,
waitDuration: const Duration(milliseconds: 800),
)
: widget;
}
Expand Down
3 changes: 2 additions & 1 deletion sdk/python/playground/icons-browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def display_icons(search_term: str):
# border=border.all(1, colors.BLACK26),
# bgcolor="#f0f0f0",
border_radius=border_radius.all(3),
)
),
tooltip="Click to copy icon name to a clipboard",
)
)

Expand Down

0 comments on commit c79054b

Please sign in to comment.