PixelPaint: Update debug message in the copy action to the used method (#8113)

This commit is contained in:
Erik Sommer 2021-06-17 19:53:45 +02:00 committed by GitHub
parent 58c182b19e
commit 96588adbd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
Notes: sideshowbarker 2024-07-18 12:06:57 +09:00

View File

@ -191,7 +191,7 @@ int main(int argc, char** argv)
}
auto bitmap = editor->active_layer()->try_copy_bitmap(editor->selection());
if (!bitmap) {
dbgln("try_copy() from Layer failed");
dbgln("try_copy_bitmap() from Layer failed");
return;
}
GUI::Clipboard::the().set_bitmap(*bitmap);