diff --git a/gtk2_ardour/ardour3_fonts.rc.in b/gtk2_ardour/ardour3_fonts.rc.in index c969087646..87b6650a66 100644 --- a/gtk2_ardour/ardour3_fonts.rc.in +++ b/gtk2_ardour/ardour3_fonts.rc.in @@ -1,8 +1,3 @@ -style "smallest_text" -{ - font_name = "@FONT_TINY@" -} - style "very_small_text" { font_name = "@FONT_SMALLER@" diff --git a/gtk2_ardour/ardour3_widget_list.rc b/gtk2_ardour/ardour3_widget_list.rc index f969af002c..13c3b87e53 100644 --- a/gtk2_ardour/ardour3_widget_list.rc +++ b/gtk2_ardour/ardour3_widget_list.rc @@ -360,7 +360,7 @@ widget "*monitor" style:highest "monitor" widget "*processor prefader" style:highest "processor" widget "*processor fader" style:highest "processor" widget "*processor postfader" style:highest "processor" -widget "*MonitorSectionLabel" style:highest "very_small_text" +widget "*MonitorSectionLabel" style:highest "small_text" widget "*mute button" style:highest "monitor" widget "*invert button" style:highest "monitor" widget "*send alert button" style:highest "small_text" diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index de0818231d..3ea6790eaf 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -502,7 +502,6 @@ def build(bld): if bld.is_defined('GTKOSX'): # OS X fonts basefont = "" font_sizes = { - 'TINY' : '7', 'SMALLER' : '9', 'SMALL' : '10', 'NORMAL' : '11', @@ -517,7 +516,6 @@ def build(bld): else: # Linux/X11 fonts basefont = '' # unspecified - use system defaults font_sizes = { - 'TINY' : '6', 'SMALLER' : '8', 'SMALL' : '9', 'NORMAL' : '10',