X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Flatency_gui.cc;h=d8cf8d051e8e68ad079e10e22c495aeafe280ac5;hb=397729eb182ba3d5e311f0ac80959cf72f5cba24;hp=25c280351af00e35560f77a864da11a84dfaa307;hpb=34d6518e239477d4ec4207488a923ae5e62b1749;p=ardour.git diff --git a/gtk2_ardour/latency_gui.cc b/gtk2_ardour/latency_gui.cc index 25c280351a..d8cf8d051e 100644 --- a/gtk2_ardour/latency_gui.cc +++ b/gtk2_ardour/latency_gui.cc @@ -22,6 +22,7 @@ #include #include "ardour/latent.h" #include "pbd/convert.h" +#include "pbd/error.h" #include #include "latency_gui.h" @@ -50,9 +51,10 @@ LatencyBarController::get_label (double&) std::stringstream s; if (nframes < (_latency_gui->sample_rate / 1000.0)) { - s << ((framepos_t) rint (nframes)) << " samples"; + const framepos_t nf = (framepos_t) rint (nframes); + s << string_compose (P_("%1 sample", "%1 samples", nf), nf); } else { - s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " msecs"; + s << std::fixed << std::setprecision (2) << (nframes / (_latency_gui->sample_rate / 1000.0)) << " ms"; } return s.str (); @@ -162,29 +164,11 @@ LatencyDialog::LatencyDialog (const std::string& title, Latent& l, framepos_t sr : ArdourDialog (title, false, true), lwidget (l, sr, psz) { - get_vbox()->pack_start (lwidget); - add_button (Stock::CANCEL, RESPONSE_CANCEL); - add_button (Stock::APPLY, RESPONSE_REJECT); - add_button (Stock::OK, RESPONSE_ACCEPT); + add_button (Stock::CLOSE, RESPONSE_CLOSE); show_all (); - - while (true) { - int ret = run (); - - switch (ret) { - case RESPONSE_ACCEPT: - return; - break; - - case RESPONSE_REJECT: - lwidget.finish (); - break; - default: - return; - } - } + run (); }