1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-06-01 02:34:04 +02:00

Update GC memory threshold defaults, also GC reload is enabled by default

This commit is contained in:
chylex 2017-08-05 19:42:10 +02:00
parent 8432240a47
commit 23e99b1d44

View File

@ -142,26 +142,14 @@ private void InitializeComponent() {
0, 0,
0}); 0});
this.numMemoryThreshold.Location = new System.Drawing.Point(202, 82); this.numMemoryThreshold.Location = new System.Drawing.Point(202, 82);
this.numMemoryThreshold.Maximum = new decimal(new int[] { this.numMemoryThreshold.Maximum = 2000;
3000, this.numMemoryThreshold.Minimum = 200;
0,
0,
0});
this.numMemoryThreshold.Minimum = new decimal(new int[] {
200,
0,
0,
0});
this.numMemoryThreshold.Name = "numMemoryThreshold"; this.numMemoryThreshold.Name = "numMemoryThreshold";
this.numMemoryThreshold.Size = new System.Drawing.Size(97, 20); this.numMemoryThreshold.Size = new System.Drawing.Size(97, 20);
this.numMemoryThreshold.TabIndex = 4; this.numMemoryThreshold.TabIndex = 4;
this.numMemoryThreshold.TextSuffix = " MB"; this.numMemoryThreshold.TextSuffix = " MB";
this.toolTip.SetToolTip(this.numMemoryThreshold, "Minimum amount of memory usage by the browser process to trigger the cleanup.\r\nThis is not a limit, the usage is allowed to exceed this value."); this.toolTip.SetToolTip(this.numMemoryThreshold, "Minimum amount of memory usage by the browser process to trigger the cleanup.\r\nThis is not a limit, the usage is allowed to exceed this value.");
this.numMemoryThreshold.Value = new decimal(new int[] { this.numMemoryThreshold.Value = 400;
350,
0,
0,
0});
// //
// checkBrowserGCReload // checkBrowserGCReload
// //