fix horiz alignment (corner-radius is added to layout)
[ardour.git] / gtk2_ardour / latency_gui.cc
index 25c280351af00e35560f77a864da11a84dfaa307..180af93776476b8e482584fb0b642108cfa6d7b2 100644 (file)
@@ -22,6 +22,7 @@
 #include <iomanip>
 #include "ardour/latent.h"
 #include "pbd/convert.h"
+#include "pbd/error.h"
 #include <gtkmm2ext/utils.h>
 
 #include "latency_gui.h"
@@ -162,29 +163,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 ();
 }