a reverb is a reverb is a reverb
[ardour.git] / gtk2_ardour / time_info_box.cc
index 55e7472f4f0fd2dfdb8cb81949d5ddaff6a6c0be..d0d6871cbb0c07a3626e035b12e3e9b4f986c89e 100644 (file)
@@ -36,7 +36,7 @@
 #include "control_point.h"
 #include "automation_line.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace Gtk;
 using namespace ARDOUR;
@@ -58,12 +58,6 @@ TimeInfoBox::TimeInfoBox ()
        punch_start = new AudioClock ("punch-start", false, "punch", false, false, false, false);
        punch_end = new AudioClock ("punch-end", false, "punch", false, false, false, false);
 
-       selection_start->set_draw_background (false);
-       selection_end->set_draw_background (false);
-       selection_length->set_draw_background (false);
-       punch_start->set_draw_background (false);
-       punch_end->set_draw_background (false);
-
        selection_title.set_text (_("Selection"));
        punch_title.set_text (_("Punch"));
 
@@ -193,7 +187,7 @@ TimeInfoBox::region_property_change (boost::shared_ptr<ARDOUR::Region> /* r */,
         * RegionView (not Region itself).
         */
 
-       selection_changed ();
+       //selection_changed ();
 }
 
 bool
@@ -235,7 +229,7 @@ TimeInfoBox::sync_punch_mode (AudioClock* src)
                syncing_punch = false;
        }
 }
-       
+
 
 void
 TimeInfoBox::set_session (Session* s)
@@ -251,11 +245,11 @@ TimeInfoBox::set_session (Session* s)
 
        if (s) {
                Location* punch = s->locations()->auto_punch_location ();
-               
+
                if (punch) {
                        watch_punch (punch);
                }
-               
+
                punch_changed (punch);
 
                _session->auto_punch_location_changed.connect (_session_connections, MISSING_INVALIDATOR,
@@ -329,7 +323,7 @@ TimeInfoBox::selection_changed ()
                        Glib::RefPtr<Action> act = ActionManager::get_action ("MouseMode", "set-mouse-mode-object-range");
                        Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
 
-                       if (tact && tact->get_active() &&  !selection.regions.empty()) {        
+                       if (tact && tact->get_active() &&  !selection.regions.empty()) {
                                /* show selected regions */
                                s = selection.regions.start();
                                e = selection.regions.end_frame();
@@ -357,7 +351,7 @@ TimeInfoBox::selection_changed ()
        default:
                selection_start->set_off (true);
                selection_end->set_off (true);
-               selection_length->set_off (true);       
+               selection_length->set_off (true);
                break;
        }
 }
@@ -395,5 +389,5 @@ TimeInfoBox::punch_changed (Location* loc)
 
        punch_start->set (loc->start());
        punch_end->set (loc->end());
-}      
+}