Re: Empty Space in Dialog Box

2016-06-06 Thread Jim Charlton
On 16-06-06 05:05 PM, Rena wrote: On Mon, Jun 6, 2016 at 7:23 AM, Kamalpreet Grewal wrote: I am developing a dialog box. I have added a treeview and two buttons in it. Adding the treeview to the scrolled window using: _mainBox.pack_start(_scrolledWindow, Gtk::PACK_EXPAND_WIDGET); where _mainB

Re: Empty Space in Dialog Box

2016-06-06 Thread Rena
On Mon, Jun 6, 2016 at 7:23 AM, Kamalpreet Grewal wrote: > I am developing a dialog box. I have added a treeview and two buttons in > it. > > Adding the treeview to the scrolled window using: > _mainBox.pack_start(_scrolledWindow, Gtk::PACK_EXPAND_WIDGET); > where _mainBox is a Gtk::VBox. > > The

Empty Space in Dialog Box

2016-06-06 Thread Kamalpreet Grewal
I am developing a dialog box. I have added a treeview and two buttons in it. Adding the treeview to the scrolled window using: _mainBox.pack_start(_scrolledWindow, Gtk::PACK_EXPAND_WIDGET); where _mainBox is a Gtk::VBox. The problem is I am getting empty space above the treeview. Why is it so? As