Browse Source

use const for default values

PHP-GTK3
yggverse 2 months ago
parent
commit
8a622ec335
  1. 8
      src/Entity/Browser/Container/Tab.php

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

@ -15,8 +15,8 @@ class Tab @@ -15,8 +15,8 @@ class Tab
public Container $container;
// Defaults
private bool $_reorderable = true;
private bool $_scrollable = true;
public const REORDERABLE = true;
public const SCROLLABLE = true;
// Extras
private array $_page = [];
@ -31,7 +31,7 @@ class Tab @@ -31,7 +31,7 @@ class Tab
$this->gtk = new \GtkNotebook;
$this->gtk->set_scrollable(
$this->_scrollable
$this::SCROLLABLE
);
// Restore previous session
@ -146,7 +146,7 @@ class Tab @@ -146,7 +146,7 @@ class Tab
$this->gtk->set_tab_reorderable(
$page->gtk,
$this->_reorderable
$this::REORDERABLE
);
if ($open)

Loading…
Cancel
Save