(svn r17798) -Codechange: Introduce new constant WD_PAR_VSEP_WIDE for large amount of space between text.

This commit is contained in:
alberth
2009-10-18 13:59:25 +00:00
parent 1f3dedea24
commit 9c31915368
2 changed files with 4 additions and 3 deletions

View File

@@ -115,7 +115,8 @@ enum WidgetDrawDistances {
WD_SORTBUTTON_ARROW_WIDTH = 11, ///< Width of up/down arrow of sort button state.
WD_PAR_VSEP_NORMAL = 2, ///< Amount of vertical space between two paragraphs of text.
WD_PAR_VSEP_NORMAL = 2, ///< Normal amount of vertical space between two paragraphs of text.
WD_PAR_VSEP_WIDE = 8, ///< Large amount of vertical space between two paragraphs of text.
};
/* wiget.cpp */