Spring – Diff between revs 1 and 2

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 2
Line 129... Line 129...
129 } 129 }
Line 130... Line 130...
130   130  
131 private SettingsForm() 131 private SettingsForm()
132 { 132 {
133 InitializeComponent(); -  
Line 134... Line 133...
134 Utilities.WindowState.FormTracker.Track(this); 133 InitializeComponent();
135   134  
136 PanelGraphics = hudPostionPanel.CreateGraphics(); 135 PanelGraphics = hudPostionPanel.CreateGraphics();
137 PanelBounds = PanelGraphics.VisibleClipBounds; 136 PanelBounds = PanelGraphics.VisibleClipBounds;
138 PanelSolidColorBrush = new SolidBrush(hudPostionPanel.BackColor); 137 PanelSolidColorBrush = new SolidBrush(hudPostionPanel.BackColor);
Line 139... Line 138...
139 PanelRegion = new Region(PanelBounds); 138 PanelRegion = new Region(PanelBounds);
140 } -  
141   -  
Line -... Line 139...
-   139 }
-   140  
-   141 #endregion
-   142  
-   143 #region Event Handlers
142 #endregion 144 private void SettingsForm_Load(object sender, EventArgs e)
143   145 {
144 #region Event Handlers 146 Utilities.WindowState.FormTracker.Track(this);
145   147 }
Line 324... Line 326...
324 } 326 }
Line 325... Line 327...
325   327  
326 maximumRepeatsTrackBar.Value = value; 328 maximumRepeatsTrackBar.Value = value;
Line 327... Line 329...
327 } 329 }
-   330  
-   331 #endregion
328   332  
329 #endregion 333