summaryrefslogtreecommitdiffstats
path: root/macosx/HBOutputPanelController.m
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-08-23 20:12:02 +0000
committerdynaflash <[email protected]>2007-08-23 20:12:02 +0000
commit890d542eb5d26733765b1b137fc09e801b75ac09 (patch)
treeda605a772a34a870c856cbf5ff9cfa3db6c8205f /macosx/HBOutputPanelController.m
parent0662fd4fe970265947445f7ce6e5e23adbb311a8 (diff)
MacGui: Increase the Activity Window text storage to double its current capacity for more complete logs.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@855 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBOutputPanelController.m')
-rw-r--r--macosx/HBOutputPanelController.m10
1 files changed, 8 insertions, 2 deletions
diff --git a/macosx/HBOutputPanelController.m b/macosx/HBOutputPanelController.m
index e44bbc8c2..d60490a32 100644
--- a/macosx/HBOutputPanelController.m
+++ b/macosx/HBOutputPanelController.m
@@ -9,11 +9,17 @@
#import "HBOutputRedirect.h"
/// Maximum amount of characters that can be shown in the view.
-#define TextStorageUpperSizeLimit 20000
+// Original value used by cleaner
+//#define TextStorageUpperSizeLimit 20000
+// lets use this higher value for now for better gui debugging
+#define TextStorageUpperSizeLimit 40000
/// When old output is removed, this is the amount of characters that will be
/// left in outputTextStorage.
-#define TextStorageLowerSizeLimit 15000
+// Original value used by cleaner
+//#define TextStorageLowerSizeLimit 15000
+// lets use this higher value for now for better gui debugging
+#define TextStorageLowerSizeLimit 35000
@implementation HBOutputPanelController