~brandontschaefer/unity/bump-to-new-nux-abi

« back to all changes in this revision

Viewing changes to unity-shared/UScreen.cpp

  • Committer: Andrea Azzarone
  • Date: 2013-12-28 17:34:36 UTC
  • mto: (3566.5.438 unity)
  • mto: This revision was merged to the branch mainline in revision 3703.
  • Revision ID: azzaronea@gmail.com-20131228173436-jqschonskxaj5xx3
Initial commit for the unity lockscreen. UserAuthenticator added with tests too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
 
87
87
std::vector<nux::Geometry>& UScreen::GetMonitors()
88
88
{
 
89
  monitors_.clear();
 
90
  monitors_.push_back(nux::Geometry(0,0,500,500));
 
91
  monitors_.push_back(nux::Geometry(500,200,500,500));
89
92
  return monitors_;
90
93
}
91
94