From 9f01db4c5f9670d6df929af5122034baffbd46e7 Mon Sep 17 00:00:00 2001 From: Boram Bae Date: Mon, 9 May 2022 14:24:37 +0900 Subject: [PATCH] Fix an invalid engine handle error * To send something to the engine, the engine must be running. * FlutterTizenView::SendInitialGeometry is used to send the geometry after running the engine Signed-off-by: Boram Bae --- shell/platform/tizen/flutter_tizen_view.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/shell/platform/tizen/flutter_tizen_view.cc b/shell/platform/tizen/flutter_tizen_view.cc index d6db6bf5851d8..f1c029aa58cae 100644 --- a/shell/platform/tizen/flutter_tizen_view.cc +++ b/shell/platform/tizen/flutter_tizen_view.cc @@ -63,8 +63,6 @@ void FlutterTizenView::SetEngine(std::unique_ptr engine) { text_input_channel_ = std::make_unique( internal_plugin_registrar_->messenger(), std::make_unique(window_.get())); - - OnRotate(window_->GetRotation()); } void FlutterTizenView::CreateRenderSurface() {