Commit 7741809 1 parent 256a2f6 commit 7741809 Copy full SHA for 7741809
File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ It should work on both Win7 and Win10.
46
46
47
47
## Changes
48
48
49
+ - Recognize ApplicationFrameWindow based Apps like Photo, Mail.
49
50
- Fix null exception on toggling Fade out... option.
50
51
- Adjust settings font and display.
51
52
- Fix extra empty tab for File Explorer.
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ type FilterService() as this =
45
45
fun () -> this.isValidOwner( window)
46
46
//Win32 Dialogue class
47
47
fun () -> window.className <> " #32770"
48
- fun () -> window.className <> " ApplicationFrameWindow"
48
+ fun () -> ( window.className <> " ApplicationFrameWindow" ) || not ( String.IsNullOrEmpty window.text )
49
49
fun () -> this.isBanned( window) .not
50
50
fun () -> this.isOnScreenOrMinimized( window)
51
51
])
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ type ProgramVersion(parts:List2<int>)=
44
44
this.compare( v2) > 0
45
45
46
46
type Program () as this =
47
- let version = " 2022.02.26 "
47
+ let version = " 2023.10.15 "
48
48
let isStandAlone = System.Diagnostics.Debugger.IsAttached
49
49
50
50
let mutex = new Mutex( false , " BemoSoftware.WindowTabs" )
@@ -376,4 +376,4 @@ program.run(List2<obj>([
376
376
InputManagerPlugin( Set2( List2([ WindowMessages.WM_ MOUSEWHEEL])))
377
377
NotifyIconPlugin()
378
378
ExceptionHandlerPlugin()
379
- ]) .map( fun o -> o.cast< IPlugin>()))
379
+ ]) .map( fun o -> o.cast< IPlugin>()))
You can’t perform that action at this time.
0 commit comments