mirror of https://gitlab.com/basile.b/dexed.git
nothing
This commit is contained in:
parent
078f9e9d06
commit
c054723122
|
@ -35,7 +35,7 @@ type
|
||||||
constructor construct(event: TDubPropAddEvent; json: TJSONData);
|
constructor construct(event: TDubPropAddEvent; json: TJSONData);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TCEDubProjectEditorWidget }
|
{ TCEDubProjectEditorWidget }
|
||||||
TCEDubProjectEditorWidget = class(TCEWidget, ICEProjectObserver)
|
TCEDubProjectEditorWidget = class(TCEWidget, ICEProjectObserver)
|
||||||
btnAcceptProp: TSpeedButton;
|
btnAcceptProp: TSpeedButton;
|
||||||
btnAddProp: TSpeedButton;
|
btnAddProp: TSpeedButton;
|
||||||
|
|
|
@ -52,9 +52,6 @@ inherited CEEditorWidget: TCEEditorWidget
|
||||||
inherited contextMenu: TPopupMenu
|
inherited contextMenu: TPopupMenu
|
||||||
left = 24
|
left = 24
|
||||||
top = 16
|
top = 16
|
||||||
object MenuItem2: TMenuItem[0]
|
|
||||||
Caption = 'New Item1'
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
object macRecorder: TSynMacroRecorder[2]
|
object macRecorder: TSynMacroRecorder[2]
|
||||||
RecordShortCut = 0
|
RecordShortCut = 0
|
||||||
|
|
|
@ -61,7 +61,6 @@ type
|
||||||
mnuedPrevCarea: TMenuItem;
|
mnuedPrevCarea: TMenuItem;
|
||||||
mnuedLowcase: TMenuItem;
|
mnuedLowcase: TMenuItem;
|
||||||
mnuedUpcase: TMenuItem;
|
mnuedUpcase: TMenuItem;
|
||||||
MenuItem2: TMenuItem;
|
|
||||||
MenuItem3: TMenuItem;
|
MenuItem3: TMenuItem;
|
||||||
MenuItem5: TMenuItem;
|
MenuItem5: TMenuItem;
|
||||||
MenuItem6: TMenuItem;
|
MenuItem6: TMenuItem;
|
||||||
|
|
|
@ -679,8 +679,13 @@ begin
|
||||||
Tree.Selected := aRoot.Items[i];
|
Tree.Selected := aRoot.Items[i];
|
||||||
Tree.Selected.Expand(false);
|
Tree.Selected.Expand(false);
|
||||||
//
|
//
|
||||||
if str = aPath then break;
|
if str = aPath then
|
||||||
if dig(Tree.Selected) then break;
|
break
|
||||||
|
else if dig(Tree.Selected) then
|
||||||
|
begin
|
||||||
|
Tree.Selected.MakeVisible;
|
||||||
|
break;
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue