1
0
Fork 0

Copy subitles: Fix wxBitmap usage

UseAlpha turned out to be unnecessary and doesn't even exist in some
wxWidgets ports.
This commit is contained in:
arch1t3cht 2022-08-19 21:17:29 +02:00
parent aadf6b32b9
commit 732c5c7654
1 changed files with 1 additions and 3 deletions

View File

@ -325,9 +325,7 @@ struct video_frame_copy_subs final : public validator_video_loaded {
STR_HELP("Copy the currently displayed subtitles to the clipboard, with transparent background")
void operator()(agi::Context *c) override {
wxBitmap img(get_image(c, false, true));
img.UseAlpha();
SetClipboard(img);
SetClipboard(wxBitmap(get_image(c, false, true), 32));
}
};