~townsend/unity/fix-lp1301394-trusty

« back to all changes in this revision

Viewing changes to UnityCore/Indicator.cpp

  • Committer: Marco Trevisan (Treviño)
  • Date: 2014-01-27 17:31:30 UTC
  • mto: (3666.1.7 unity) (3695.4.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 3639.
  • Revision ID: mail@3v1n0.net-20140127173130-ifxoobug2tu17c6s
Indicators: remove the ShowDropdownMenu call from Entry, we handle it a lower level now

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
      on_show_menu.emit(entry_id, xid, x, y, button);
83
83
    }));
84
84
 
85
 
    new_entry_connections.Add(new_entry->on_show_dropdown_menu.connect([this] (std::string const& entry_id, unsigned xid, int x, int y) {
86
 
      on_show_dropdown_menu.emit(entry_id, xid, x, y);
87
 
    }));
88
 
 
89
85
    new_entry_connections.Add(new_entry->on_secondary_activate.connect([this] (std::string const& entry_id) {
90
86
      on_secondary_activate.emit(entry_id);
91
87
    }));