summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Day <allanpday@gmail.com>2013-06-12 22:01:18 -0400
committerAllan Day <allanpday@gmail.com>2013-06-18 17:26:24 +0100
commit0c505fadede39c39478c4f43f7441908dec00095 (patch)
tree0e379725348cd4a3950cc4ef710a110e40d513ef
parentb2dd4f33f7200bc999a8fc152d7c32fa60eaece5 (diff)
downloadmutter-0c505fadede39c39478c4f43f7441908dec00095.tar.gz
make the window shadows lighter
Subtler shadows look more refined. https://bugzilla.gnome.org/show_bug.cgi?id=702141
-rw-r--r--src/compositor/meta-shadow-factory.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/compositor/meta-shadow-factory.c b/src/compositor/meta-shadow-factory.c
index dbda21a4e..3af62fc96 100644
--- a/src/compositor/meta-shadow-factory.c
+++ b/src/compositor/meta-shadow-factory.c
@@ -123,12 +123,12 @@ static guint signals[LAST_SIGNAL] = { 0 };
/* The first element in this array also defines the default parameters
* for newly created classes */
MetaShadowClassInfo default_shadow_classes[] = {
- { "normal", { 6, -1, 0, 3, 255 }, { 3, -1, 0, 3, 128 } },
- { "dialog", { 6, -1, 0, 3, 255 }, { 3, -1, 0, 3, 128 } },
- { "modal_dialog", { 6, -1, 0, 1, 255 }, { 3, -1, 0, 3, 128 } },
- { "utility", { 3, -1, 0, 1, 255 }, { 3, -1, 0, 1, 128 } },
- { "border", { 6, -1, 0, 3, 255 }, { 3, -1, 0, 3, 128 } },
- { "menu", { 6, -1, 0, 3, 255 }, { 3, -1, 0, 0, 128 } },
+ { "normal", { 6, -1, 0, 3, 128 }, { 3, -1, 0, 3, 32 } },
+ { "dialog", { 6, -1, 0, 3, 128 }, { 3, -1, 0, 3, 32 } },
+ { "modal_dialog", { 6, -1, 0, 1, 128 }, { 3, -1, 0, 3, 32 } },
+ { "utility", { 3, -1, 0, 1, 128 }, { 3, -1, 0, 1, 32 } },
+ { "border", { 6, -1, 0, 3, 128 }, { 3, -1, 0, 3, 32 } },
+ { "menu", { 6, -1, 0, 3, 128 }, { 3, -1, 0, 0, 32 } },
{ "popup-menu", { 1, -1, 0, 1, 128 }, { 1, -1, 0, 1, 128 } },