-
-
Notifications
You must be signed in to change notification settings - Fork 648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emacs window border #788
Labels
bug
Something isn't working
Comments
I second that |
FYI, emacs-mac displays the border when the option is enabled. |
Note to self: "malformed" windows that are made manageable through rules should be whitelisted for borders (and other similar properties). |
I added this to src/window.c: diff --git a/src/window.c b/src/window.c
index 8ef484e..cbf7785 100644
--- a/src/window.c
+++ b/src/window.c
@@ -384,6 +384,8 @@ bool window_level_is_standard(struct window *window)
bool window_is_standard(struct window *window)
{
+ if (window->rule_manage) return true;
+
bool standard_win = false;
CFStringRef role = NULL;
CFStringRef srole = NULL; Probably not the ideal fix, but works for me, I use it for Adobe After Effects like this:
|
koekeishiya
added a commit
that referenced
this issue
Jul 28, 2021
… for opacity, focus-follows-mouse, and borders
koekeishiya
added
the
the-future
I never think of the future - it comes soon enough.
label
Jul 28, 2021
koekeishiya
added
the
addressed on master; not released
Fixed upstream, but not yet released
label
Nov 18, 2021
koekeishiya
removed
addressed on master; not released
Fixed upstream, but not yet released
the-future
I never think of the future - it comes soon enough.
labels
Mar 16, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have
yabai -m rule --add app="^Emacs$" space=code manage=on
line in myyabairc
and Emacs is successfully managed by yabai, but if i enable window borders, Emacs doesn't have one. Is it possible without macport?The text was updated successfully, but these errors were encountered: