specify time info box bg in style file(s), and make nudge clock use the same bg color...
authorPaul Davis <paul@linuxaudiosystems.com>
Sun, 11 Nov 2012 16:04:30 +0000 (16:04 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Sun, 11 Nov 2012 16:04:30 +0000 (16:04 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13434 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/ardour3_ui_dark.rc.in
gtk2_ardour/ardour3_ui_default.conf
gtk2_ardour/ardour3_ui_light.rc.in
gtk2_ardour/ardour3_widget_list.rc
gtk2_ardour/time_info_box.cc

index a6364f9f804b89c90d03b072002998bce42f0145..8a696e9aa63aa587e907a0ade2f0c40509f13017 100644 (file)
@@ -340,6 +340,11 @@ style "inspector_processor_list" = "processor_list"
        base[SELECTED] = { 0.3, 0.3, 0.3 }
 }
 
+style "time_info_box" 
+{
+        bg[NORMAL] = { 0.149, 0.149, 0.149 }
+}
+
 ##include ardour3_dark_fonts.rc
 ##include ardour3_dark_styles.rc
 ##include ardour3_widgets.rc
index 663c153c4f2fc3ad0ee39805e0bb817264699198..d3b2113b499dca58f98ffa5fb3e164234a0c039d 100644 (file)
     <Option name="selection clock: text" value="6bb620ff"/>
     <Option name="selection clock: edited text" value="ff0000ff"/>
     <Option name="selection clock: cursor" value="f11000ff"/>
-    <Option name="nudge clock: background" value="000000ff"/>
+    <Option name="nudge clock: background" value="262626ff"/>
     <Option name="nudge clock: text" value="6bb620ff"/>
     <Option name="nudge clock: edited text" value="ffa500ff"/>
     <Option name="nudge clock: cursor" value="ffa500ff"/>
index 907ef38f5df1354fe813dae14422b14049208b73..6c592c7970704cd1beba020e3ff70982bb1278a7 100644 (file)
@@ -351,6 +351,11 @@ style "inspector_processor_list" = "processor_list"
        base[SELECTED] = { 0.3, 0.3, 0.3 }
 }
 
+style "time_info_box" 
+{
+        bg[NORMAL] = { 0.149, 0.149, 0.149 }
+}
+
 ##include ardour3_light_fonts.rc
 ##include ardour3_light_styles.rc
 ##include ardour3_widgets.rc
index cba75ae4a2b7805ecbd94ae9e61a72b0dbe30c54..6e6bd274aeab363662dc2f50d64c80a61f46e058 100644 (file)
@@ -348,6 +348,7 @@ widget "*TimeInfoSelectionTitle" style:highest "very_small_text"
 widget "*TimeInfoSelectionLabel" style:highest "very_small_text"
 widget "*TimeInfoPunchTitle" style:highest "very_small_text"
 widget "*TimeInfoPunchButton" style:highest "very_small_text"
+widget "*TimeInfoBox" style:highest "time_info_box"
 widget "*RouteNameEditorEntry" style:highest "text_cell_entry"
 widget "*RegionNameEditorEntry" style:highest "text_cell_entry"
 widget "*EditorRouteGroupsAllGroupButton" style:highest "default_toggle_button"
index 2cb7e652b59c2187af0275b453c63062a4b06c79..aeb361686ab67d73de885c646cacc562c521b078 100644 (file)
@@ -48,6 +48,8 @@ TimeInfoBox::TimeInfoBox ()
        , syncing_selection (false)
        , syncing_punch (false)
 {
+       set_name (X_("TimeInfoBox"));
+
        selection_start = new AudioClock ("selection-start", false, "selection", false, false, false, false);
        selection_end = new AudioClock ("selection-end", false, "selection", false, false, false, false);
        selection_length = new AudioClock ("selection-length", false, "selection", false, false, true, false);