diff options
author | maniac <maniac@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2007-01-05 13:14:48 +0000 |
---|---|---|
committer | maniac <maniac@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2007-01-05 13:14:48 +0000 |
commit | 27b7a75a26070cb3cedb39446decd87756b9996d (patch) | |
tree | c51bcaa7dfa9a2ae3ee9af5187e7014c4de0f962 /beryl-plugins/src/place.c | |
parent | 4f4b0b3078800869494c32b9717fc1e011847d12 (diff) | |
download | marex-dev-27b7a75a26070cb3cedb39446decd87756b9996d.tar.gz marex-dev-27b7a75a26070cb3cedb39446decd87756b9996d.tar.bz2 |
place plugin: initialize the first member of the enum to be able to check this with a for loop
git-svn-id: file:///beryl/trunk@2372 d7aaf104-2d23-0410-ae22-9d23157bf5a3
Diffstat (limited to 'beryl-plugins/src/place.c')
-rw-r--r-- | beryl-plugins/src/place.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/beryl-plugins/src/place.c b/beryl-plugins/src/place.c index 1445c90..019309d 100644 --- a/beryl-plugins/src/place.c +++ b/beryl-plugins/src/place.c @@ -56,7 +56,7 @@ typedef struct _PlaceScreen typedef enum _PlaceMode { - PlaceModeCascade, + PlaceModeCascade = 0, PlaceModeCentered, PlaceModeRandom, PlaceModeIntelligent, |