- make duplis real wasnt redrawing

- small caps option for titles (doing manually is quite painful to watch).
This commit is contained in:
Campbell Barton
2010-07-13 22:21:59 +00:00
parent c5d6665cb3
commit 03e638d128
8 changed files with 78 additions and 24 deletions

View File

@@ -308,10 +308,13 @@ class DATA_PT_font(DataButtonsPanel):
split = layout.split()
col = split.column(align=True)
col.label(text="Underline:")
col.prop(text, "ul_position", text="Position")
col.prop(text, "ul_height", text="Thickness")
col = split.column()
colsub = col.column(align=True)
colsub.label(text="Underline:")
colsub.prop(text, "ul_position", text="Position")
colsub.prop(text, "ul_height", text="Thickness")
col.label(text="")
col.prop(text, "small_caps_scale", text="Small Caps")
if wide_ui:
col = split.column()
@@ -319,6 +322,7 @@ class DATA_PT_font(DataButtonsPanel):
col.prop(char, "bold")
col.prop(char, "italic")
col.prop(char, "underline")
col.prop(char, "use_small_caps")
# col.prop(char, "style")
# col.prop(char, "wrap")