~ubuntu-branches/ubuntu/trusty/banshee/trusty-updates

« back to all changes in this revision

Viewing changes to src/Extensions/Banshee.Bpm/Banshee.Bpm/BpmEntry.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2014-02-09 23:06:03 UTC
  • mfrom: (1.2.26) (150.1.2 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20140209230603-7dhbveo058j96ea0
* [fbf05ca] Imported Upstream version 2.9.0+really2.6.1:
  Downgrade to 2.6.1 -- 2.9.x is unstable and 3.0 won't arrive in time for
  release
* [22de440] Revert packaging to 2.6.1-2ubuntu1
* [7357b73] Merge changes from 2.6.1-5
* [a7156c0] Filter out libgpod-cil-dev versions built against gtk#3
* [e7c634d] Update dversionmangle for extracting +really version out

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
            tap_adapter.BpmChanged += OnTapBpmChanged;
107
107
            Add (tap_button);
108
108
 
109
 
            detect_button.TooltipText = Catalog.GetString ("Have Banshee attempt to auto-detect the BPM of this song");
110
 
            play_button.TooltipText = Catalog.GetString ("Play this song");
111
 
            tap_button.TooltipText = Catalog.GetString ("Tap this button to the beat to set the BPM for this song manually");
 
109
            object tooltip_host = TooltipSetter.CreateHost ();
 
110
 
 
111
            TooltipSetter.Set (tooltip_host, detect_button,
 
112
                Catalog.GetString ("Have Banshee attempt to auto-detect the BPM of this song"));
 
113
 
 
114
            TooltipSetter.Set (tooltip_host, play_button, Catalog.GetString ("Play this song"));
 
115
 
 
116
            TooltipSetter.Set (tooltip_host, tap_button,
 
117
                Catalog.GetString ("Tap this button to the beat to set the BPM for this song manually"));
112
118
 
113
119
            ShowAll ();
114
120
        }