aboutsummaryrefslogtreecommitdiff
path: root/monsterwm.c
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2012-01-28 04:16:45 +0200
committerIvan Kanakarakis <ivan.kanak@gmail.com>2012-01-28 04:16:45 +0200
commit705bc5ab22411ff743520e16f577d0a63bdb8822 (patch)
tree5a7881174106ce631f66dfbc059840d7d4b7cb0f /monsterwm.c
parent18ac6a8fad5e13fed2285c814b57c9268783eb83 (diff)
minor code formatting changes
Diffstat (limited to 'monsterwm.c')
-rw-r--r--monsterwm.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/monsterwm.c b/monsterwm.c
index af85b90..586ad98 100644
--- a/monsterwm.c
+++ b/monsterwm.c
@@ -772,25 +772,25 @@ void run(void) {
void save_desktop(int i) {
if (i >= DESKTOPS) return;
desktops[i].master_size = master_size;
- desktops[i].mode = mode;
- desktops[i].growth = growth;
- desktops[i].head = head;
- desktops[i].current = current;
- desktops[i].showpanel = showpanel;
- desktops[i].prevfocus = prevfocus;
+ desktops[i].mode = mode;
+ desktops[i].growth = growth;
+ desktops[i].head = head;
+ desktops[i].current = current;
+ desktops[i].showpanel = showpanel;
+ desktops[i].prevfocus = prevfocus;
}
/* set the specified desktop's properties */
void select_desktop(int i) {
if (i >= DESKTOPS) return;
save_desktop(current_desktop);
- master_size = desktops[i].master_size;
- mode = desktops[i].mode;
- growth = desktops[i].growth;
- head = desktops[i].head;
- current = desktops[i].current;
- showpanel = desktops[i].showpanel;
- prevfocus = desktops[i].prevfocus;
+ master_size = desktops[i].master_size;
+ mode = desktops[i].mode;
+ growth = desktops[i].growth;
+ head = desktops[i].head;
+ current = desktops[i].current;
+ showpanel = desktops[i].showpanel;
+ prevfocus = desktops[i].prevfocus;
current_desktop = i;
}