diff --git a/Classes/BITFeedbackManager.h b/Classes/BITFeedbackManager.h index 777ed23eb6..e497f5d22d 100644 --- a/Classes/BITFeedbackManager.h +++ b/Classes/BITFeedbackManager.h @@ -317,10 +317,8 @@ typedef NS_ENUM(NSInteger, BITFeedbackObservationMode) { [[BITHockeyManager sharedHockeyManager].feedbackManager showFeedbackComposeViewWithGeneratedScreenshot]; @see feedbackObservationMode - - @param includeStatusBar BOOL if the screenshot should include the satusbar (if present) or not */ -- (void)showFeedbackComposeViewWithGeneratedScreenshotWithStatusBar:(BOOL)includeStatusBar; +- (void)showFeedbackComposeViewWithGeneratedScreenshot; /** diff --git a/Classes/BITFeedbackManager.m b/Classes/BITFeedbackManager.m index f708bf723f..a5043c1bab 100644 --- a/Classes/BITFeedbackManager.m +++ b/Classes/BITFeedbackManager.m @@ -243,8 +243,8 @@ } -- (void)showFeedbackComposeViewWithGeneratedScreenshotWithStatusBar:(BOOL)includeStatusBar { - UIImage *screenshot = bit_screenshot(includeStatusBar); +- (void)showFeedbackComposeViewWithGeneratedScreenshot { + UIImage *screenshot = bit_screenshot(YES); [self showFeedbackComposeViewWithPreparedItems:@[screenshot]]; } @@ -1132,7 +1132,7 @@ - (void)screenshotTripleTap:(UITapGestureRecognizer *)tapRecognizer { if (tapRecognizer.state == UIGestureRecognizerStateRecognized){ - [self showFeedbackComposeViewWithGeneratedScreenshotWithStatusBar:NO]; + [self showFeedbackComposeViewWithGeneratedScreenshot]; } }