1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 22:12:58 +02:00

Bug 1971 - Linux: Scriptables screenshot command only grab a small rectangle of window

This commit is contained in:
James Crook
2018-09-05 18:31:04 +01:00
parent f61989e922
commit 1ecff6d5db
2 changed files with 14 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ public:
nCaptureWhats
};
ScreenshotCommand(){ mbBringToTop=true;};
ScreenshotCommand(){ mbBringToTop=true;mIgnore=NULL;};
// CommandDefinitionInterface overrides
IdentInterfaceSymbol GetSymbol() override {return SCREENSHOT_PLUGIN_SYMBOL;};
wxString GetDescription() override {return _("Takes screenshots.");};
@@ -103,6 +103,7 @@ public:
private:
// May need to ignore the screenshot dialog
// Appears not to be used anymore.
wxWindow *mIgnore;
bool mBackground;