summaryrefslogtreecommitdiff
path: root/gtk2_ardour/location_ui.cc
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2018-06-09 19:08:15 +0200
committerJohannes Mueller <github@johannes-mueller.org>2018-06-19 20:17:40 +0200
commite6a67784668a3ad398e5cc6d9f3ccc637f208d6f (patch)
tree49490d8ce428980f29de33800dee037d8f5b7e30 /gtk2_ardour/location_ui.cc
parent6edea6064eecbc732ee3018b50d17828c02aba02 (diff)
Revert frame -> sample changes where it's a frame as in Gtk::Frame
Diffstat (limited to 'gtk2_ardour/location_ui.cc')
-rw-r--r--gtk2_ardour/location_ui.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk2_ardour/location_ui.cc b/gtk2_ardour/location_ui.cc
index 7f2e2bb3ba..c868e1d38e 100644
--- a/gtk2_ardour/location_ui.cc
+++ b/gtk2_ardour/location_ui.cc
@@ -808,15 +808,15 @@ LocationUI::LocationUI (std::string state_node_name)
newest_location = 0;
- loc_sample_box.set_spacing (5);
- loc_sample_box.set_border_width (5);
- loc_sample_box.set_name("LocationFrameBox");
+ loc_frame_box.set_spacing (5);
+ loc_frame_box.set_border_width (5);
+ loc_frame_box.set_name("LocationFrameBox");
- loc_sample_box.pack_start (location_rows_scroller, true, true);
+ loc_frame_box.pack_start (location_rows_scroller, true, true);
add_location_button.set_name ("LocationAddLocationButton");
- table->attach (loc_sample_box, 0, 2, table_row, table_row + 1);
+ table->attach (loc_frame_box, 0, 2, table_row, table_row + 1);
++table_row;
loc_range_panes.add (*table);
@@ -841,14 +841,14 @@ LocationUI::LocationUI (std::string state_node_name)
range_rows_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
range_rows_scroller.set_size_request (-1, 130);
- range_sample_box.set_spacing (5);
- range_sample_box.set_name("LocationFrameBox");
- range_sample_box.set_border_width (5);
- range_sample_box.pack_start (range_rows_scroller, true, true);
+ range_frame_box.set_spacing (5);
+ range_frame_box.set_name("LocationFrameBox");
+ range_frame_box.set_border_width (5);
+ range_frame_box.pack_start (range_rows_scroller, true, true);
add_range_button.set_name ("LocationAddRangeButton");
- table->attach (range_sample_box, 0, 2, table_row, table_row + 1);
+ table->attach (range_frame_box, 0, 2, table_row, table_row + 1);
++table_row;
loc_range_panes.add (*table);