diff options
author | Ted Gould <ted@gould.cx> | 2010-12-03 21:40:11 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-12-03 21:40:11 -0600 |
commit | 5265f39dd8fe1d8cfe9d3884f413b22fe29dac71 (patch) | |
tree | d254a64b31f5b996f811dc4ea7530a93d15664b8 /bindings | |
parent | 178f821b27fd31a5059d76a9ccc0cf9ff551e35b (diff) | |
parent | 671666f8ece765624fe6f2c94e6ece24688c5b8c (diff) | |
download | libayatana-appindicator-5265f39dd8fe1d8cfe9d3884f413b22fe29dac71.tar.gz libayatana-appindicator-5265f39dd8fe1d8cfe9d3884f413b22fe29dac71.tar.bz2 libayatana-appindicator-5265f39dd8fe1d8cfe9d3884f413b22fe29dac71.zip |
Merging in removing the service
Diffstat (limited to 'bindings')
-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 (); |