Skip to content

Commit 13761f7

Browse files
bwikbsswift-kim
authored andcommitted
Enable PlatformViewChannel method(resize) (#103)
* This is necessary for webview resize. Signed-off-by: MuHong Byun <[email protected]>
1 parent de851cc commit 13761f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/platform/tizen/channels/platform_view_channel.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ void PlatformViewChannel::HandleMethodCall(
220220
double width = ExtractDoubleFromMap(arguments, "width");
221221
double height = ExtractDoubleFromMap(arguments, "height");
222222
it->second->Resize(width, height);
223-
result->NotImplemented();
223+
result->Success();
224224
} else if (method == "touch") {
225225
int type, button;
226226
double x, y, dx, dy;

0 commit comments

Comments
 (0)