* [PATCH] hob: Don't set busy cursor on the root window, just our window
@ 2012-09-18 14:04 Ross Burton
2012-09-18 14:43 ` Saul Wold
0 siblings, 1 reply; 5+ messages in thread
From: Ross Burton @ 2012-09-18 14:04 UTC (permalink / raw)
To: openembedded-core
[ YOCTO #3127 ]
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
bitbake/lib/bb/ui/crumbs/builder.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index 6df1ca4..335a5cb 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -809,9 +809,9 @@ class Builder(gtk.Window):
self.image_details_page.set_sensitive(sensitive)
if sensitive:
- self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.LEFT_PTR))
+ self.window.set_cursor(None)
else:
- self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
self.sensitive = sensitive
--
1.7.10
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] hob: Don't set busy cursor on the root window, just our window
2012-09-18 14:04 Ross Burton
@ 2012-09-18 14:43 ` Saul Wold
2012-09-18 14:52 ` Burton, Ross
0 siblings, 1 reply; 5+ messages in thread
From: Saul Wold @ 2012-09-18 14:43 UTC (permalink / raw)
To: Ross Burton; +Cc: openembedded-core
On 09/18/2012 07:04 AM, Ross Burton wrote:
> [ YOCTO #3127 ]
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
> bitbake/lib/bb/ui/crumbs/builder.py | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
bitbake-devel list might be a better place for this.
Sau!
> diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
> index 6df1ca4..335a5cb 100755
> --- a/bitbake/lib/bb/ui/crumbs/builder.py
> +++ b/bitbake/lib/bb/ui/crumbs/builder.py
> @@ -809,9 +809,9 @@ class Builder(gtk.Window):
> self.image_details_page.set_sensitive(sensitive)
>
> if sensitive:
> - self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.LEFT_PTR))
> + self.window.set_cursor(None)
> else:
> - self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
> + self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
> self.sensitive = sensitive
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] hob: Don't set busy cursor on the root window, just our window
2012-09-18 14:43 ` Saul Wold
@ 2012-09-18 14:52 ` Burton, Ross
0 siblings, 0 replies; 5+ messages in thread
From: Burton, Ross @ 2012-09-18 14:52 UTC (permalink / raw)
To: Saul Wold; +Cc: openembedded-core
On 18 September 2012 15:43, Saul Wold <sgw@linux.intel.com> wrote:
> bitbake-devel list might be a better place for this.
Erm, yeah, whoops.
Ross
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] hob: Don't set busy cursor on the root window, just our window
@ 2012-09-18 14:55 Ross Burton
2012-09-20 11:03 ` Richard Purdie
0 siblings, 1 reply; 5+ messages in thread
From: Ross Burton @ 2012-09-18 14:55 UTC (permalink / raw)
To: bitbake-devel
[ YOCTO #3127 ]
Signed-off-by: Ross Burton <ross.burton@intel.com>
---
bitbake/lib/bb/ui/crumbs/builder.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index 6df1ca4..335a5cb 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -809,9 +809,9 @@ class Builder(gtk.Window):
self.image_details_page.set_sensitive(sensitive)
if sensitive:
- self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.LEFT_PTR))
+ self.window.set_cursor(None)
else:
- self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
self.sensitive = sensitive
--
1.7.10
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] hob: Don't set busy cursor on the root window, just our window
2012-09-18 14:55 [PATCH] hob: Don't set busy cursor on the root window, just our window Ross Burton
@ 2012-09-20 11:03 ` Richard Purdie
0 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2012-09-20 11:03 UTC (permalink / raw)
To: Ross Burton; +Cc: bitbake-devel
On Tue, 2012-09-18 at 15:55 +0100, Ross Burton wrote:
> [ YOCTO #3127 ]
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
> bitbake/lib/bb/ui/crumbs/builder.py | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-09-20 11:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-18 14:55 [PATCH] hob: Don't set busy cursor on the root window, just our window Ross Burton
2012-09-20 11:03 ` Richard Purdie
-- strict thread matches above, loose matches on Subject: below --
2012-09-18 14:04 Ross Burton
2012-09-18 14:43 ` Saul Wold
2012-09-18 14:52 ` Burton, Ross
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.