mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-05 17:16:04 +00:00
PixelPaint: Update debug message in the copy action to the used method (#8113)
This commit is contained in:
parent
58c182b19e
commit
96588adbd4
Notes:
sideshowbarker
2024-07-18 12:06:57 +09:00
Author: https://github.com/Erikmitk 🔰
Commit: 96588adbd4
Pull-request: https://github.com/SerenityOS/serenity/pull/8113
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ int main(int argc, char** argv)
|
||||||
}
|
}
|
||||||
auto bitmap = editor->active_layer()->try_copy_bitmap(editor->selection());
|
auto bitmap = editor->active_layer()->try_copy_bitmap(editor->selection());
|
||||||
if (!bitmap) {
|
if (!bitmap) {
|
||||||
dbgln("try_copy() from Layer failed");
|
dbgln("try_copy_bitmap() from Layer failed");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
GUI::Clipboard::the().set_bitmap(*bitmap);
|
GUI::Clipboard::the().set_bitmap(*bitmap);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue