atom-transparency icon indicating copy to clipboard operation
atom-transparency copied to clipboard

switching tabs leaves contents of another one visible

Open anaderi opened this issue 7 years ago • 10 comments

Hi! as I open the second tab and switch to it, it still displays contents of the 1st one. fff

after I minimize/open window again, everything is fine

OS: mac os X (el capitan) Atom: 1.13.0-dev-11f8d9e

anaderi avatar Oct 12 '16 15:10 anaderi

@anaderi yeah, you need to start atom with the --disable-gpu flag

transcranial avatar Nov 26 '16 03:11 transcranial

actually I have such 'ghosts' even with --disable-gpu:

image

it might not be visible very well, since I've dimmed colors at stylesheet, but it is clearly there (see the line in the left window starting by docker_env.sh.

anaderi avatar Nov 26 '16 20:11 anaderi

ah, sorry! I just saw that you're on 1.13.0-dev. I haven't tested that yet. Maybe it has something to do with the removal of the shadow dom? Let me know if you have any ideas.

transcranial avatar Nov 26 '16 21:11 transcranial

Similarly I noticed hyper.js was leaving ghost remnants of previous text when I tried to just simply adjust the background-color to be more transparent. Then I found hyper-transparent that fixes it. I wonder if that solution could work here as well.

UPDATE: nevermind, just noticed hyper-transparency has the ghost text problem too. :(

kynetiv avatar May 02 '17 13:05 kynetiv

plagued by this too on my mac. -_- - I hot key move the atom window (amethyst) with another and it clears out the ghost, but expect it to return, just a work around.

iamleet avatar Aug 10 '17 00:08 iamleet

Yeah, I've had the same issue in macOS, while it works perfectly in ubuntu. I wonder if this would solve it in macOS: https://github.com/electron/electron/issues/8847

transcranial avatar Aug 10 '17 12:08 transcranial

@transcranial, dude I love this repo. I found something that works when the atom window is in focus, no burn in on Mac. https://github.com/iamleet/atom-transparency/tree/issue5_burn_in_text Can anyone verify?

iamleet avatar Oct 22 '17 16:10 iamleet

Can confirm. The solution posted by iamleet works on 1.25-dev, Sierra 10.13. Just add the following CSS:

atom-pane, atom-panel, atom-notification { background: rgba(0, 0, 0, 0.5) !important; -webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */ backface-visibility: hidden; }

Then turn off the "background-tips" package and restart atom.

BioXD avatar Jan 29 '18 02:01 BioXD

@BioXD Thanks for confirming, going to submit a pr for the readme

iamleet avatar Jan 29 '18 18:01 iamleet

Heads up - running linux with compton compositor. Using the --disable-gpu flag as well makes transparency not work whatsoever. Running it with just --enable-transparent-visuals flag works perfectly.

ZakharEl avatar Apr 19 '20 02:04 ZakharEl