Skip to content

Commit

Permalink
PixelPaint: Update debug message in the copy action to the used method (
Browse files Browse the repository at this point in the history
  • Loading branch information
Erikmitk committed Jun 17, 2021
1 parent 58c182b commit 96588ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Userland/Applications/PixelPaint/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 96588ad

Please sign in to comment.