File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 4747## WrapPanel / WrapLayout
4848- Fixed ` WrapPanel ` to update its layout when a layout property changes.
4949
50+ ## Fuse.Views
51+ - Fixed a crash when pushing the back-button on Android.
52+
5053
5154# 1.8
5255
Original file line number Diff line number Diff line change @@ -17,8 +17,11 @@ namespace Fuse
1717 Fuse . Platform . Lifecycle . ExitedInteractive += OnExitInteractive ;
1818 Fuse . Platform . Lifecycle . Terminating += OnTerminating ;
1919
20- Uno . Platform . EventSources . HardwareKeys . KeyDown += KeyboardBootstrapper . OnKeyPressed ;
21- Uno . Platform . EventSources . HardwareKeys . KeyUp += KeyboardBootstrapper . OnKeyReleased ;
20+ if defined( Mobile && ! Library )
21+ {
22+ Uno . Platform . EventSources . HardwareKeys . KeyDown += KeyboardBootstrapper . OnKeyPressed ;
23+ Uno . Platform . EventSources . HardwareKeys . KeyUp += KeyboardBootstrapper . OnKeyReleased ;
24+ }
2225 }
2326
2427 static void OnTerminating ( Fuse . Platform . ApplicationState state )
You can’t perform that action at this time.
0 commit comments