~unity-team/unity/panel-fixes

« back to all changes in this revision

Viewing changes to src/unityshell.cpp

Add support for swtiching themes properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
627
627
  self->launcherWindow->SetLayout(layout);
628
628
  self->launcherWindow->SetBackgroundColor(nux::Color(0x00000000));
629
629
  self->launcherWindow->ShowWindow(true);
630
 
  self->launcherWindow->EnableInputWindow(true);
 
630
  self->launcherWindow->EnableInputWindow(true, "launcher");
631
631
  self->launcherWindow->InputWindowEnableStruts(true);
632
632
 
633
633
  /* FIXME: this should not be manual, should be managed with a
658
658
  self->panelWindow->SetLayout(layout);
659
659
  self->panelWindow->SetBackgroundColor(nux::Color(0x00000000));
660
660
  self->panelWindow->ShowWindow(true);
661
 
  self->panelWindow->EnableInputWindow(true);
 
661
  self->panelWindow->EnableInputWindow(true, "panel");
662
662
  self->panelWindow->InputWindowEnableStruts(true);
663
663
  LOGGER_END_PROCESS ("initLauncher-Panel");
664
664