OSDN Git Service

MacGui: Increase the Activity Window text storage to double its current capacity...
authordynaflash <dynaflash@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Thu, 23 Aug 2007 20:12:02 +0000 (20:12 +0000)
committerdynaflash <dynaflash@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Thu, 23 Aug 2007 20:12:02 +0000 (20:12 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@855 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/HBOutputPanelController.m

index e44bbc8..d60490a 100644 (file)
@@ -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