summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Jeffrey <chjjeffrey@gmail.com>2012-09-13 00:39:43 -0500
committerChristopher Jeffrey <chjjeffrey@gmail.com>2012-09-13 09:59:50 -0500
commit2f63377d4edae923c0ede939fd2915f4e063a0be (patch)
tree8e57558e6737a411057818f3eff7ebb3d3f192e8
parent27197e24dbcb3177642d55f56571205fead2b16e (diff)
downloadtdebase-2f63377d.tar.gz
tdebase-2f63377d.zip
whitespace
-rw-r--r--compton.c4
-rw-r--r--compton.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/compton.c b/compton.c
index c2d4a221a..6ec0e1744 100644
--- a/compton.c
+++ b/compton.c
@@ -1693,7 +1693,7 @@ void calc_opacity(Display *dpy, win *w, Bool refetch_prop) {
if (OPAQUE != win_type_opacity[w->window_type])
opacity = win_type_opacity[w->window_type] * OPAQUE;
}
-
+
// Respect inactive_opacity in some cases
if (inactive_opacity && IS_NORMAL_WIN(w) && False == w->focused
&& (OPAQUE == opacity || inactive_opacity_override))
@@ -1845,7 +1845,7 @@ restack_win(Display *dpy, win *w, Window new_above) {
char *window_name;
Bool to_free;
win* c = list;
-
+
printf("restack_win(%#010lx, %#010lx): Window stack modified. Current stack:\n", w->id, new_above);
for (; c; c = c->next) {
window_name = "(Failed to get title)";
diff --git a/compton.h b/compton.h
index c85992bb5..f4bccd4b5 100644
--- a/compton.h
+++ b/compton.h
@@ -197,12 +197,12 @@ static inline Bool array_wid_exists(const Window *arr,
if (arr[count] == wid)
return True;
}
-
+
return False;
}
#ifdef DEBUG_EVENTS
-/*
+/*
* Subtracting two struct timeval values.
*
* Taken from glibc manual.