You've already forked lazarus-ccr
tvplanit: Avoid dependence on new WordWrap property of TPanel in VpWavDlg.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5004 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -560,7 +560,6 @@ object MainForm: TMainForm
|
|||||||
AllowRearrange = True
|
AllowRearrange = True
|
||||||
BackgroundColor = clActiveCaption
|
BackgroundColor = clActiveCaption
|
||||||
BackgroundMethod = bmNormal
|
BackgroundMethod = bmNormal
|
||||||
BorderStyle = bsSingle
|
|
||||||
ButtonHeight = 20
|
ButtonHeight = 20
|
||||||
DrawingStyle = dsCoolTab
|
DrawingStyle = dsCoolTab
|
||||||
FolderCollection = <
|
FolderCollection = <
|
||||||
|
@ -139,9 +139,22 @@ object FrmSoundDialog: TFrmSoundDialog
|
|||||||
Width = 170
|
Width = 170
|
||||||
BevelOuter = bvNone
|
BevelOuter = bvNone
|
||||||
BorderStyle = bsSingle
|
BorderStyle = bsSingle
|
||||||
Caption = 'Nothing to select from'
|
ClientHeight = 86
|
||||||
|
ClientWidth = 166
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
Wordwrap = True
|
object Label3: TLabel
|
||||||
|
Left = 0
|
||||||
|
Height = 86
|
||||||
|
Top = 0
|
||||||
|
Width = 166
|
||||||
|
Align = alClient
|
||||||
|
Alignment = taCenter
|
||||||
|
AutoSize = False
|
||||||
|
Caption = 'Nothing to select from'
|
||||||
|
Layout = tlCenter
|
||||||
|
ParentColor = False
|
||||||
|
WordWrap = True
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object Splitter1: TSplitter
|
object Splitter1: TSplitter
|
||||||
@ -175,8 +188,22 @@ object FrmSoundDialog: TFrmSoundDialog
|
|||||||
Width = 170
|
Width = 170
|
||||||
BevelOuter = bvNone
|
BevelOuter = bvNone
|
||||||
BorderStyle = bsSingle
|
BorderStyle = bsSingle
|
||||||
Caption = 'Nothing to select from'
|
ClientHeight = 86
|
||||||
|
ClientWidth = 166
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
|
object Label4: TLabel
|
||||||
|
Left = 0
|
||||||
|
Height = 86
|
||||||
|
Top = 0
|
||||||
|
Width = 166
|
||||||
|
Align = alClient
|
||||||
|
Alignment = taCenter
|
||||||
|
AutoSize = False
|
||||||
|
Caption = 'Nothing to select from'
|
||||||
|
Layout = tlCenter
|
||||||
|
ParentColor = False
|
||||||
|
WordWrap = True
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -48,12 +48,14 @@ type
|
|||||||
{ TFrmSoundDialog }
|
{ TFrmSoundDialog }
|
||||||
|
|
||||||
TFrmSoundDialog = class(TForm)
|
TFrmSoundDialog = class(TForm)
|
||||||
|
Label3: TLabel;
|
||||||
PageControl1: TPageControl;
|
PageControl1: TPageControl;
|
||||||
Panel1: TPanel;
|
Panel1: TPanel;
|
||||||
Panel2: TPanel;
|
Panel2: TPanel;
|
||||||
Panel3: TPanel;
|
Panel3: TPanel;
|
||||||
Panel4: TPanel;
|
Panel4: TPanel;
|
||||||
RightPanel: TPanel;
|
RightPanel: TPanel;
|
||||||
|
Label4: TLabel;
|
||||||
ShellListView: TShellListView;
|
ShellListView: TShellListView;
|
||||||
ShellTreeView: TShellTreeView;
|
ShellTreeView: TShellTreeView;
|
||||||
Splitter1: TSplitter;
|
Splitter1: TSplitter;
|
||||||
@ -160,8 +162,8 @@ begin
|
|||||||
CBDefault.Caption := RSDefaultSound;
|
CBDefault.Caption := RSDefaultSound;
|
||||||
OkBtn.Caption := RSOkBtn;
|
OkBtn.Caption := RSOkBtn;
|
||||||
CancelBtn.Caption := RSCancelBtn;
|
CancelBtn.Caption := RSCancelBtn;
|
||||||
Panel3.Caption := RSNothingToSelectFrom;
|
Label3.Caption := RSNothingToSelectFrom;
|
||||||
Panel4.Caption := RSNothingToSelectFrom;
|
Label4.Caption := RSNothingToSelectFrom;
|
||||||
if DingPath = '' then begin
|
if DingPath = '' then begin
|
||||||
CBDefault.Checked := true;
|
CBDefault.Checked := true;
|
||||||
ShellTreeView.Path := MediaFolder;
|
ShellTreeView.Path := MediaFolder;
|
||||||
|
Reference in New Issue
Block a user