~ubuntu-branches/ubuntu/saucy/notify-osd/saucy-proposed

« back to all changes in this revision

Viewing changes to examples/append-hint-example.py

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-07-11 18:24:23 UTC
  • mfrom: (3.1.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20110711182423-j77ej6q249mz6izx
Tags: 0.9.31-0ubuntu1
* New upstream version:
  - use gtk3 (lp: #655232)
* debian/control: 
  - updated the build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
def pushNotification (title, body, icon):
111
111
        n = pynotify.Notification (title, body, icon);
112
 
        n.set_hint_string ("x-canonical-append", "");
 
112
        n.set_hint_string ("x-canonical-append", "true");
113
113
        n.show ()
114
114
        time.sleep (3) # simulate a user typing
115
115