Browse Source

stick status bar to footer

PHP-GTK3
yggverse 3 months ago
parent
commit
f38aab0906
  1. 7
      src/Entity/Browser/Container/Tab/Page.php
  2. 8
      src/Entity/Browser/Container/Tab/Page/Content.php

7
src/Entity/Browser/Container/Tab/Page.php

@ -52,8 +52,11 @@ class Page @@ -52,8 +52,11 @@ class Page
$this
);
$this->gtk->add(
$this->content->gtk
$this->gtk->pack_start(
$this->content->gtk,
true,
true,
0
);
// Init statusbar

8
src/Entity/Browser/Container/Tab/Page/Content.php

@ -37,14 +37,6 @@ class Content @@ -37,14 +37,6 @@ class Content
$this->_margin
);
$this->gtk->set_propagate_natural_height(
true
);
$this->gtk->set_propagate_natural_width(
true
);
// Init viewport
// to integrate scrolled window features for data label
$this->viewport = new Viewport(

Loading…
Cancel
Save