-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 6958d0f39134f2c8774f30e867f9e17a88865aa2 Author: Amy <[email protected]> Date: Mon May 27 00:24:14 2024 -0400 don't crash on high sierra - change from NSAppearanceNameDarkAqua to NSAppearanceNameVibrantDark which works on both HS and current - availability check NSApp.appearance and fallback to NSWindow.appearance (former prevents light flash opening dark windows, otherwise we could just use the latter everywhere) commit 922149f6dca1449c3f2ef5aeb66699dbe583851c Author: Amy <[email protected]> Date: Sun May 26 23:59:06 2024 -0400 more visual tweaks - revert confusing windowing scheme - attempt to match xcode theme in window ui with some rather bad hacks - temporarily break high sierra support
- Loading branch information
1 parent
8f81d78
commit b27c1b8
Showing
6 changed files
with
103 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
@interface Delegate:NSObject<NSApplicationDelegate,NSUserInterfaceValidations> | ||
|
||
@property(assign) BOOL nextWindowIsNotTab; | ||
@property(assign) CGPoint lastCascadePoint; | ||
|
||
-(BOOL)shouldMakeTab; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
@interface WindowController:NSWindowController | ||
|
||
@property(retain) XcodeViewController* xcodeViewController; | ||
|
||
-(instancetype)initWithDocument:(Document*)document; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters