diff options
author | Ted Gould <ted@gould.cx> | 2010-12-03 20:44:18 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-03 20:44:18 -0600 |
commit | b90242a423f62ee594f2421b1147e317d9a4ab68 (patch) | |
tree | c679fbaf1cff03fe2e1840b58eedb3ba56f3abf6 /bindings/mono/examples | |
parent | d2a48b2530f5218ca71673ab072b707e374ad0c6 (diff) | |
parent | 63f47256a8dc38452d2ea62f7e846ecb44f6d30d (diff) | |
download | libayatana-appindicator-b90242a423f62ee594f2421b1147e317d9a4ab68.tar.gz libayatana-appindicator-b90242a423f62ee594f2421b1147e317d9a4ab68.tar.bz2 libayatana-appindicator-b90242a423f62ee594f2421b1147e317d9a4ab68.zip |
Updating to trunk so that we get the GI fixes
Diffstat (limited to 'bindings/mono/examples')
-rw-r--r-- | bindings/mono/examples/IndicatorExample.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bindings/mono/examples/IndicatorExample.cs b/bindings/mono/examples/IndicatorExample.cs index c34e020..c18a665 100644 --- a/bindings/mono/examples/IndicatorExample.cs +++ b/bindings/mono/examples/IndicatorExample.cs @@ -34,8 +34,8 @@ public class IndicatorExample win.Add (label); - ApplicationIndicator indicator = new ApplicationIndicator ("my-id", - "my-name", + ApplicationIndicator indicator = new ApplicationIndicator ("Example", + "applications-microblogging-panel", Category.ApplicationStatus); indicator.Status = Status.Attention; @@ -45,6 +45,7 @@ public class IndicatorExample menu.Append (new MenuItem ("Bar")); indicator.Menu = menu; + indicator.Menu.ShowAll (); win.ShowAll (); |