Re: [PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-26 Thread Barry Song
Simon Ser 于2019年4月26日周五 下午4:57写道: > > On Friday, April 26, 2019 12:58 AM, Barry Song <21cn...@gmail.com> wrote: > > Simon Ser cont...@emersion.fr 于2019年4月17日周三 下午10:26写道: > > > > > On Wednesday, April 17, 2019 1:23 PM, Barry Song 21cn...@gmail.com wrote: > > > > > > > Simon Ser cont...@emersion.fr

Re: [PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-25 Thread Simon Ser
On Friday, April 26, 2019 12:58 AM, Barry Song <21cn...@gmail.com> wrote: > Simon Ser cont...@emersion.fr 于2019年4月17日周三 下午10:26写道: > > > On Wednesday, April 17, 2019 1:23 PM, Barry Song 21cn...@gmail.com wrote: > > > > > Simon Ser cont...@emersion.fr 于2019年4月15日周一 下午5:18写道: > > > > > > > Hi, > > >

Re: [PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-25 Thread Barry Song
Simon Ser 于2019年4月17日周三 下午10:26写道: > > On Wednesday, April 17, 2019 1:23 PM, Barry Song <21cn...@gmail.com> wrote: > > Simon Ser cont...@emersion.fr 于2019年4月15日周一 下午5:18写道: > > > > > Hi, > > > Weston now uses GitLab 1 merge requests for contributions. Can you > > > resend your patch on GitLab? > >

Re: [PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-17 Thread Simon Ser
On Wednesday, April 17, 2019 1:23 PM, Barry Song <21cn...@gmail.com> wrote: > Simon Ser cont...@emersion.fr 于2019年4月15日周一 下午5:18写道: > > > Hi, > > Weston now uses GitLab 1 merge requests for contributions. Can you > > resend your patch on GitLab? > > sure. do i just need to send it for master, or do

Re: [PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-17 Thread Barry Song
Simon Ser 于2019年4月15日周一 下午5:18写道: > > Hi, > > Weston now uses GitLab [1] merge requests for contributions. Can you > resend your patch on GitLab? sure. do i just need to send it for master, or do we also do a fix for 6.0 and 5.0 release? > > Thanks, > > [1]: https://gitlab.freedesktop.org/waylan

Re: [PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-14 Thread Simon Ser
Hi, Weston now uses GitLab [1] merge requests for contributions. Can you resend your patch on GitLab? Thanks, [1]: https://gitlab.freedesktop.org/wayland/weston -- Simon Ser https://emersion.fr ___ wayland-devel mailing list wayland-devel@lists.freede

[PATCH] desktop-shell: fix the crash while clicking TRANSIENT_INACTIVE window

2019-04-14 Thread Barry Song
From: Barry Song It is pretty easy to replicate this bug by involving a Qt Window with Qt::WindowTransparentForInput flag. int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.show(); QDialog d1(&w, Qt::WindowTransparentForInput); d1.show(); re