Skip to content

Commit

Permalink
Fix clipboard paste functionality not working (flutter#19489)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-ancell committed Jul 9, 2020
1 parent c479b93 commit f3ab78d
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions shell/platform/linux/fl_platform_plugin.cc
Expand Up @@ -12,7 +12,6 @@ static constexpr char kChannelName[] = "flutter/platform";
static constexpr char kBadArgumentsError[] = "Bad Arguments";
static constexpr char kUnknownClipboardFormatError[] =
"Unknown Clipboard Format";
static constexpr char kClipboardRequestError[] = "Clipboard Request Failed";
static constexpr char kFailedError[] = "Failed";
static constexpr char kGetClipboardDataMethod[] = "Clipboard.getData";
static constexpr char kSetClipboardDataMethod[] = "Clipboard.setData";
Expand Down Expand Up @@ -43,17 +42,14 @@ static void clipboard_text_cb(GtkClipboard* clipboard,
gpointer user_data) {
g_autoptr(FlMethodCall) method_call = FL_METHOD_CALL(user_data);

g_autoptr(FlMethodResponse) response = nullptr;
g_autoptr(FlValue) result = nullptr;
if (text != nullptr) {
g_autoptr(FlValue) result = fl_value_new_map();
result = fl_value_new_map();
fl_value_set_string_take(result, kTextKey, fl_value_new_string(text));
response = FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
} else {
response = FL_METHOD_RESPONSE(fl_method_error_response_new(
kClipboardRequestError, "Failed to retrieve clipboard text from GTK",
nullptr));
}

g_autoptr(FlMethodResponse) response =
FL_METHOD_RESPONSE(fl_method_success_response_new(result));
send_response(method_call, response);
}

Expand Down

0 comments on commit f3ab78d

Please sign in to comment.