mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-21 16:55:01 -05:00
This commit is contained in:
parent
25ad9b2dd5
commit
01b382134d
@ -15,7 +15,7 @@ object SimbaForm: TSimbaForm
|
|||||||
OnDropFiles = FormDropFiles
|
OnDropFiles = FormDropFiles
|
||||||
OnHide = doOnHide
|
OnHide = doOnHide
|
||||||
OnShortCut = FormShortCuts
|
OnShortCut = FormShortCuts
|
||||||
LCLVersion = '0.9.29'
|
LCLVersion = '0.9.31'
|
||||||
Visible = True
|
Visible = True
|
||||||
object ToolBar1: TToolBar
|
object ToolBar1: TToolBar
|
||||||
Left = 0
|
Left = 0
|
||||||
|
@ -3063,9 +3063,11 @@ begin
|
|||||||
if CurrScript.ScriptChanged then
|
if CurrScript.ScriptChanged then
|
||||||
begin;
|
begin;
|
||||||
CurrTab.TabSheet.Caption:= CurrScript.ScriptName + '*';
|
CurrTab.TabSheet.Caption:= CurrScript.ScriptName + '*';
|
||||||
Self.Caption := Format(WindowTitle,[CurrScript.ScriptName + '*'])
|
Self.Caption := Format(WindowTitle,[CurrScript.ScriptName + '*']);
|
||||||
|
ActionSaveScript.Enabled:= True;
|
||||||
end else
|
end else
|
||||||
begin;
|
begin;
|
||||||
|
ActionSaveScript.Enabled:= False;
|
||||||
CurrTab.TabSheet.Caption:= CurrScript.ScriptName;
|
CurrTab.TabSheet.Caption:= CurrScript.ScriptName;
|
||||||
Self.Caption := Format(WindowTitle,[CurrScript.ScriptName]);
|
Self.Caption := Format(WindowTitle,[CurrScript.ScriptName]);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user