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:
parent
aadf6b32b9
commit
732c5c7654
1 changed files with 1 additions and 3 deletions
|
@ -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));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue