~brandontschaefer/unity/fix-915828

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/PlacesGroup.cpp

  • Committer: Brandon Schaefer
  • Date: 2012-02-02 04:05:22 UTC
  • mfrom: (1827.1.59 unity)
  • Revision ID: brandontschaefer@gmail.com-20120202040522-r86246d1fxmclh4p
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
#include "DashStyle.h"
46
46
 
47
 
static const nux::Color kExpandDefaultTextColor(1.0f, 1.0f, 1.0f, 0.5f);
48
 
static const nux::Color kExpandHoverTextColor(1.0f, 1.0f, 1.0f, 1.0f);
49
 
static const float kExpandDefaultIconOpacity = 0.5f;
50
 
static const float kExpandHoverIconOpacity = 1.0f;
 
47
namespace
 
48
{
 
49
const nux::Color kExpandDefaultTextColor(1.0f, 1.0f, 1.0f, 0.5f);
 
50
const nux::Color kExpandHoverTextColor(1.0f, 1.0f, 1.0f, 1.0f);
 
51
const float kExpandDefaultIconOpacity = 0.5f;
 
52
const float kExpandHoverIconOpacity = 1.0f;
 
53
}
51
54
 
52
55
namespace unity
53
56
{