Re: [orca-list] MATE notifications
- From: Kyle <kyle4jesus gmail com>
- To: orca-list gnome org
- Subject: Re: [orca-list] MATE notifications
- Date: Sat, 05 Sep 2015 00:00:17 -0400
It's worth noting that I recently received the following comment on a
bug report that I filed regarding the notifications not being reported
to Orca. If I read it right, they are aware of the problem, but aren't
exactly sure of the cause. They are working to fix it however.
<quote>
I can make the notification read by changing Gtk+'s window from
GTK_WINDOW_POPUP to GTK_WINDOW_TOPLEVEL. But I do not understand why
windows of type GTK_WINDOW_POPUP are ignored by orca .See below for
quick hack to change the window type for the standard theme.diff --git
a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index 09aa628..cc0bd75 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -640,7 +640,8 @@ GtkWindow* create_notification(UrlClickedCb
url_clicked)
windata->urgency = URGENCY_NORMAL;
windata->url_clicked = url_clicked;
- win = gtk_window_new(GTK_WINDOW_POPUP);
+ win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+ gtk_window_set_decorated (win, FALSE);
windata->win = win;
windata->composited = FALSE;—
</quote>
Sent from Spacely's sprocket
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]