diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2025-12-04 16:32:02 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2025-12-04 16:33:36 +0100 |
| commit | 1f295484a4a7d3f8bea15dac2ae6aa336e6cf643 (patch) | |
| tree | 05149266a3298fd7d44795b54220e23aae9b68fd | |
| parent | 9d5fc8f4898cb6d89b17547b9ac0781f91713042 (diff) | |
corfu--make-frame: Fix EXWM check
| -rw-r--r-- | corfu.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -482,7 +482,9 @@ FRAME is the existing frame." (parent (window-frame))) (unless (and (frame-live-p frame) (eq (frame-parent frame) - (and (not (bound-and-true-p exwm--connection)) parent)) + (and (not (and (bound-and-true-p exwm--connection) + (display-graphic-p parent))) + parent)) ;; Handle mixed tty/graphical sessions (eq (display-graphic-p frame) (display-graphic-p parent)) |
