mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Draw DBname in browse
Для улучшения наглядности и понимания в какой БД мы находимся в строке браузера объектов при выделении элемента будет напротив отображаться имя БД. Это поведение можно отключить в настройках.
This commit is contained in:
parent
7dc02bd6fc
commit
de9f725b13
6 changed files with 75 additions and 4 deletions
|
|
@ -814,6 +814,16 @@ public:
|
|||
{
|
||||
WriteBool(wxT("ASUTPstyle"), newval);
|
||||
}
|
||||
bool GetVisibleDbNameTree() const
|
||||
{
|
||||
bool b;
|
||||
Read(wxT("VisibleDbNameTree"), &b, true);
|
||||
return b;
|
||||
}
|
||||
void SetVisibleDbNameTree(const bool newval)
|
||||
{
|
||||
WriteBool(wxT("VisibleDbNameTree"), newval);
|
||||
}
|
||||
|
||||
|
||||
wxString GetOptionsLastTreeItem() const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue