Revision aba9e6d9 trunk/Pithos.ShellExtensions/Menus/DisplayFlags.cs

b/trunk/Pithos.ShellExtensions/Menus/DisplayFlags.cs
15 15
        /// <summary>
16 16
        /// Don't display the item at all
17 17
        /// </summary>
18
        None,
18
        None=0,
19 19

  
20 20
        /// <summary>
21 21
        /// Display the item only on folders
22 22
        /// </summary>
23
        Folder,
23
        Folder=1,
24 24

  
25 25
        /// <summary>
26 26
        /// Display the item only on files
27 27
        /// </summary>
28
        File,
28
        File=2,
29 29

  
30 30
        /// <summary>
31 31
        /// Display the item both on container folders
32 32
        /// </summary>
33
        Container,
33
        Container=4,
34 34
        /// <summary>
35 35
        /// Display the item both on folders and files
36 36
        /// </summary>
37
        All
37
        All=7
38 38
    }
39 39
}

Also available in: Unified diff