diff --git a/Source/Core/GZBuilder/Windows/ExceptionDialog.cs b/Source/Core/GZBuilder/Windows/ExceptionDialog.cs index 91faba6910db795c5e844eba0e955d507516fa8a..55d105663dd0c85ec39a55f453454f5d1fc8406c 100644 --- a/Source/Core/GZBuilder/Windows/ExceptionDialog.cs +++ b/Source/Core/GZBuilder/Windows/ExceptionDialog.cs @@ -190,7 +190,7 @@ namespace CodeImp.DoomBuilder.GZBuilder.Windows { try { - System.Diagnostics.Process.Start("http://forum.zdoom.org/viewtopic.php?f=3&t=32392&start=9999999"); + System.Diagnostics.Process.Start("https://git.do.srb2.org/STJr/ZoneBuilder/issues"); } catch(Exception) { diff --git a/Source/Core/GZBuilder/Windows/ExceptionDialog.designer.cs b/Source/Core/GZBuilder/Windows/ExceptionDialog.designer.cs index 576854f82de9124a2c5ea5115dd2900bac601d05..b7ea478ae6ad5fbb5f4815d59a455f8da8fefb23 100644 --- a/Source/Core/GZBuilder/Windows/ExceptionDialog.designer.cs +++ b/Source/Core/GZBuilder/Windows/ExceptionDialog.designer.cs @@ -102,7 +102,7 @@ // threadLink // this.threadLink.AutoSize = true; - this.threadLink.LinkArea = new System.Windows.Forms.LinkArea(101, 28); + this.threadLink.LinkArea = new System.Windows.Forms.LinkArea(97, 26); this.threadLink.LinkColor = System.Drawing.SystemColors.HotTrack; this.threadLink.Location = new System.Drawing.Point(77, 210); this.threadLink.Name = "threadLink"; @@ -110,7 +110,7 @@ this.threadLink.TabIndex = 8; this.threadLink.TabStop = true; this.threadLink.Text = "You can help fixing this error if you provide the ways to reproduce it \r\nand the " + - "error report at the official thread at ZDoom.org"; + "error report at Zone Builder's repository."; this.threadLink.UseCompatibleTextRendering = true; this.threadLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.threadLink_LinkClicked); // diff --git a/Source/Plugins/SoundPropagationMode/SoundEnvironmentMode.cs b/Source/Plugins/SoundPropagationMode/SoundEnvironmentMode.cs index 7339785684f3fa35bc844bca29a99670aaacba0e..a687aeb056dc94d94a6f5f2a020859117efa2550 100644 --- a/Source/Plugins/SoundPropagationMode/SoundEnvironmentMode.cs +++ b/Source/Plugins/SoundPropagationMode/SoundEnvironmentMode.cs @@ -37,9 +37,9 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode ButtonImage = "ZDoomSoundEnvironment.png", // Image resource name for the button ButtonOrder = int.MinValue + 502, // Position of the button (lower is more to the left) ButtonGroup = "000_editing", - UseByDefault = true, SafeStartMode = false, - Volatile = false)] + Volatile = false, + Optional = true)] public class SoundEnvironmentMode : ClassicMode { diff --git a/Source/Plugins/SoundPropagationMode/SoundPropagationMode.cs b/Source/Plugins/SoundPropagationMode/SoundPropagationMode.cs index 2318b95452d7879717c076671d42976d8daa4182..c0c5a1484725028faf23f7a34598662cf6db5498 100644 --- a/Source/Plugins/SoundPropagationMode/SoundPropagationMode.cs +++ b/Source/Plugins/SoundPropagationMode/SoundPropagationMode.cs @@ -34,9 +34,9 @@ namespace CodeImp.DoomBuilder.SoundPropagationMode ButtonImage = "SoundPropagationIcon.png", // Image resource name for the button ButtonOrder = int.MinValue + 501, // Position of the button (lower is more to the left) ButtonGroup = "000_editing", - UseByDefault = true, SafeStartMode = false, - Volatile = false)] + Volatile = false, + Optional = true)] public class SoundPropagationMode : ClassicMode {