Merge lp:~njpatel/unity/send-corrent-timestamp-to-gtk-open into lp:unity

Proposed by Neil J. Patel
Status: Merged
Approved by: Marco Trevisan (Treviño)
Approved revision: no longer in the source branch.
Merged at revision: 2710
Proposed branch: lp:~njpatel/unity/send-corrent-timestamp-to-gtk-open
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
dash/DashView.cpp (+1/-1)
To merge this branch: bzr merge lp:~njpatel/unity/send-corrent-timestamp-to-gtk-open
Reviewer Review Type Date Requested Status
Marco Trevisan (Treviño) Approve
Review via email: mp+124923@code.launchpad.net

Commit message

Send the current XLib timestamp to applications when we're opening them to not confuse them and cause issues like what we have seen with Firefox (bug linked).

Description of the change

Send the current XLib timestamp to applications when we're opening them to not confuse them and cause issues like what we have seen with Firefox (bug linked).

To post a comment you must log in.
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

+1

review: Approve
Revision history for this message
Omer Akram (om26er) wrote :

should i backport the change to lp:unity/6.0 ?

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'dash/DashView.cpp'
2--- dash/DashView.cpp 2012-09-18 09:05:50 +0000
3+++ dash/DashView.cpp 2012-09-18 13:32:20 +0000
4@@ -719,7 +719,7 @@
5 return LaunchApp(appname);
6 }
7 else
8- return gtk_show_uri(NULL, uri.c_str(), time(NULL), NULL);
9+ return gtk_show_uri(NULL, uri.c_str(), CurrentTime, NULL);
10
11 return false;
12 }