Skip to content

Commit

Permalink
make tag being viewed appear first in title of the window
Browse files Browse the repository at this point in the history
  • Loading branch information
FRex committed Sep 11, 2024
1 parent abf0615 commit 6cdbc64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mainunit.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ object Form1: TForm1
Height = 633
Top = 175
Width = 939
Caption = 'Botes v23.01.22'
Caption = 'Botes v24.09.11'
ClientHeight = 633
ClientWidth = 939
DesignTimePPI = 120
Expand Down
2 changes: 1 addition & 1 deletion mainunit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ procedure TForm1.AwesomeBarChange(Sender: TObject);
end
else
begin
Caption := FBaseTitle + ' - ' + AwesomeBar.Text;
Caption := AwesomeBar.Text + ' - ' + FBaseTitle;
Application.Title := Caption;
FilterTextByAwesomeBar;
end;
Expand Down

0 comments on commit 6cdbc64

Please sign in to comment.