Skip to content

Commit

Permalink
replace 'skin:https:///' URIs with the correct form: 'skin:https://'
Browse files Browse the repository at this point in the history
  • Loading branch information
andoma committed Mar 13, 2011
1 parent b4d14f8 commit 063c41b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions glwthemes/mono/skins/grey/buttons/buttons.skin
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
widget(container_z, {
.filterConstraintX = true;
widget(backdrop, {
.source = "skin:https:///gfx/bar4.png";
.source = "skin:https://gfx/bar4.png";
.border = [6,4,6,4];
.color = BASECOLOR();
BODY
Expand All @@ -122,7 +122,7 @@
#define _glossycontainer2(BODY) {
widget(container_z, {
widget(backdrop, {
.source = "skin:https:///gfx/bar3.png";
.source = "skin:https://gfx/bar3.png";
.border = [2,4,2,4];
.padding = [5,0,5,0];
.color = select(isHovered() || isFocused(), SELCOLOR(), BASECOLOR());
Expand Down
8 changes: 4 additions & 4 deletions glwthemes/mono/skins/grey/commandmenu.skin
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
widget(container_z, {
.width ?= WIDTH;
widget(backdrop, {
.source = "skin:https:///gfx/hsliderbackground.png";
.source = "skin:https://gfx/hsliderbackground.png";
.border = 5;
.padding = -5;
.color = select(isHovered() || isFocused(), SELCOLOR(), BASECOLOR());
Expand All @@ -151,7 +151,7 @@
.alwaysGrabKnob = true;
widget(backdrop, {
.width = $ui.size;
.source = "skin:https:///gfx/hsliderknob.png";
.source = "skin:https://gfx/hsliderknob.png";
.border = 6;
.color = select(isHovered() || isFocused(), SELCOLOR(), BASECOLOR());
});
Expand All @@ -172,7 +172,7 @@
#define commandSlider(VALUE, MIN, MAX, STEP, CAPTION, ENABLED=true, HIDDEN=false) {
widget(container_z, {
widget(backdrop, {
.source = "skin:https:///gfx/hsliderbackground.png";
.source = "skin:https://gfx/hsliderbackground.png";
.border = 5;
.padding = -2;
.color = select(isHovered() || isFocused(), SELCOLOR(), BASECOLOR());
Expand Down Expand Up @@ -229,7 +229,7 @@

#define commandGroup(BODY) {
widget(backdrop, {
.source = "skin:https:///gfx/blackdrop.png";
.source = "skin:https://gfx/blackdrop.png";
.border = 12;
.alphaSelf = 0.5;
BODY;
Expand Down
2 changes: 1 addition & 1 deletion glwthemes/mono/skins/grey/infobox.skin
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

#define skinInfoboxGroup(BODY) {
widget(backdrop, {
.source = "skin:https:///gfx/border.png";
.source = "skin:https://gfx/border.png";
.border = [12,12,12,12];
.borderOnly = true;
.alphaSelf = 0.5;
Expand Down
2 changes: 1 addition & 1 deletion glwthemes/mono/skins/grey/playdeck.skin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

#define skinPlaydeckGroup(BODY) {
widget(backdrop, {
.source = "skin:https:///gfx/blackdrop.png";
.source = "skin:https://gfx/blackdrop.png";
.border = [12,12,12,12];
.alphaSelf = 0.5;
BODY;
Expand Down

0 comments on commit 063c41b

Please sign in to comment.