Skip to content

Commit

Permalink
Fix MainWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
blackwarthog authored and morevnaproject committed Oct 31, 2014
1 parent 8a0b408 commit 54fa468
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions synfig-studio/src/gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@
#include <gtkmm/menubar.h>
#include <gtkmm/box.h>

#include <gtkmm/inputdialog.h>

#endif

/* === U S I N G =========================================================== */
Expand Down Expand Up @@ -87,11 +85,6 @@ MainWindow::MainWindow()
if (get_child() != NULL)
get_child()->size_allocate(allocation);
}
void on_size_request(Gtk::Requisition *requisition) {
Gtk::Bin::on_size_request(requisition);
if (get_child() != NULL && requisition != NULL)
*requisition = get_child()->size_request();
}
};

bin_ = manage((Gtk::Bin*)new Bin());
Expand Down Expand Up @@ -157,7 +150,8 @@ MainWindow::save_all()
void
MainWindow::show_dialog_input()
{
App::dialog_input->present();
// TODO: implement DialogInput
//App::dialog_input->present();
}

void
Expand Down

0 comments on commit 54fa468

Please sign in to comment.