Text and hex editor forms have "toolwin" style, which prevents the app from appearing when pressing Alt+Tab. Additionally, Alt+Tab leaves the app in foreground when such a window had focus. This is a Windows issue, as one can read here: http://edn.embarcadero.com/article/26050 . Set both forms back to bsSizable, fixes issue #2061.

This commit is contained in:
Ansgar Becker
2010-07-02 22:43:19 +00:00
parent 0b937cd6d2
commit 8b726e2911
2 changed files with 0 additions and 2 deletions

View File

@ -1,7 +1,6 @@
object frmBinEditor: TfrmBinEditor
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Binary editor'
ClientHeight = 95
ClientWidth = 215

View File

@ -1,7 +1,6 @@
object frmTextEditor: TfrmTextEditor
Left = 0
Top = 0
BorderStyle = bsSizeToolWin
Caption = 'Text editor'
ClientHeight = 95
ClientWidth = 253