remove debug output

This commit is contained in:
Paul Davis 2017-08-24 22:31:17 -04:00
parent 5298dbc0f7
commit eb5d459564

View file

@ -123,15 +123,11 @@ Widget::size_allocate (Rect const & r)
void
Widget::compute_bounding_box () const
{
std::cerr << "cbbox for widget\n";
GtkRequisition req = { 0, 0 };
Gtk::Allocation alloc;
_widget.size_request (req);
std::cerr << "widget wants " << req.width << " x " << req.height << "\n";
_bounding_box = Rect (0, 0, req.width, req.height);
/* make sure the widget knows that it got what it asked for */