Commit 3b8c28b

Nick Faro committed on
Add splitter between order grid and tracker grid
commit 3b8c28b67fdce21f84279895d4daece3928b1c0d parent 2e4d99e
2 changed files +14−7
Modifiedsrc/tracker.lfm +13−7
@@ -1,7 +1,7 @@
1 object frmTracker: TfrmTracker 1 object frmTracker: TfrmTracker
2 Left = 571 2 Left = 571
3 Height = 1049 3 Height = 1049
4 Top = 191 4 Top = 149
5 Width = 1667 5 Width = 1667
6 AllowDropFiles = True 6 AllowDropFiles = True
7 Caption = 'hUGETracker' 7 Caption = 'hUGETracker'
@@ -191,13 +191,13 @@ object frmTracker: TfrmTracker
191 ClientWidth = 1408 191 ClientWidth = 1408
192 ParentFont = False 192 ParentFont = False
193 object Panel3: TPanel 193 object Panel3: TPanel
194 Left = 287 194 Left = 293
195 Height = 841 195 Height = 841
196 Top = 0 196 Top = 0
197 Width = 1121 197 Width = 1115
198 Align = alClient 198 Align = alClient
199 ClientHeight = 841 199 ClientHeight = 841
200 ClientWidth = 1121 200 ClientWidth = 1115
201 ParentFont = False 201 ParentFont = False
202 TabOrder = 0 202 TabOrder = 0
203 object HeaderControl1: THeaderControl 203 object HeaderControl1: THeaderControl
@@ -205,7 +205,7 @@ object frmTracker: TfrmTracker
205 Height = 38 205 Height = 38
206 Hint = 'Left click to mute, right click to solo' 206 Hint = 'Left click to mute, right click to solo'
207 Top = 1 207 Top = 1
208 Width = 1119 208 Width = 1113
209 DragReorder = False 209 DragReorder = False
210 Images = ImageList2 210 Images = ImageList2
211 Sections = < 211 Sections = <
@@ -252,7 +252,7 @@ object frmTracker: TfrmTracker
252 Left = 1 252 Left = 1
253 Height = 801 253 Height = 801
254 Top = 39 254 Top = 39
255 Width = 1119 255 Width = 1113
256 HorzScrollBar.Increment = 4 256 HorzScrollBar.Increment = 4
257 HorzScrollBar.Page = 41 257 HorzScrollBar.Page = 41
258 HorzScrollBar.Smooth = True 258 HorzScrollBar.Smooth = True
@@ -264,7 +264,7 @@ object frmTracker: TfrmTracker
264 Align = alClient 264 Align = alClient
265 BorderStyle = bsNone 265 BorderStyle = bsNone
266 ClientHeight = 801 266 ClientHeight = 801
267 ClientWidth = 1119 267 ClientWidth = 1113
268 ParentFont = False 268 ParentFont = False
269 TabOrder = 1 269 TabOrder = 1
270 OnMouseWheelDown = ScrollBox1MouseWheelDown 270 OnMouseWheelDown = ScrollBox1MouseWheelDown
@@ -351,6 +351,12 @@ object frmTracker: TfrmTracker
351 47 351 47
352 ) 352 )
353 end 353 end
354 object Splitter2: TSplitter
355 Left = 287
356 Height = 841
357 Top = 0
358 Width = 6
359 end
354 end 360 end
355 object InstrumentTabSheet: TTabSheet 361 object InstrumentTabSheet: TTabSheet
356 Caption = 'Instruments' 362 Caption = 'Instruments'
Modifiedsrc/tracker.pas +1−0
@@ -47,6 +47,7 @@ type
47 MenuItem42: TMenuItem; 47 MenuItem42: TMenuItem;
48 MenuItem55: TMenuItem; 48 MenuItem55: TMenuItem;
49 RevertMenuItem: TMenuItem; 49 RevertMenuItem: TMenuItem;
50 Splitter2: TSplitter;
50 TBMOpenDialog: TOpenDialog; 51 TBMOpenDialog: TOpenDialog;
51 ToolButton11: TToolButton; 52 ToolButton11: TToolButton;
52 LoopSongToolButton: TToolButton; 53 LoopSongToolButton: TToolButton;