1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-09-29 02:25:36 +02:00

Correctly operational from OSX terminals

This commit is contained in:
Oleksiy Protas 2015-11-25 10:26:12 +02:00
parent b24c5d8cf8
commit aade65bfe1

View File

@ -271,6 +271,11 @@ int init_xtra(drop_callback d)
Xtra.terminal_window = focused_window_id();
/* OSX: if focused window is 0, it means toxic is ran from
* native terminal and not X11 terminal window, silently exit */
if (!Xtra.terminal_window)
return 0;
{
/* Create an invisible window which will act as proxy for the DnD operation. */
XSetWindowAttributes attr = {0};
@ -343,7 +348,7 @@ int init_xtra(drop_callback d)
void terminate_xtra()
{
if (!Xtra.display) return;
if (!Xtra.display || !Xtra.terminal_window) return;
XEvent terminate = {
.xclient = {