PCM: make DIALOG_MANAGE_REPOSITORIES_BASE resizable.
This commit is contained in:
parent
8aba629fe5
commit
c1130535fb
|
@ -175,8 +175,6 @@ public:
|
||||||
|
|
||||||
struct PANEL_NETLIST
|
struct PANEL_NETLIST
|
||||||
{
|
{
|
||||||
// std::vector<wxString> custom_command_titles;
|
|
||||||
// std::vector<wxString> custom_command_paths;
|
|
||||||
std::vector<NETLIST_PLUGIN_SETTINGS> plugins;
|
std::vector<NETLIST_PLUGIN_SETTINGS> plugins;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
<property name="name">DIALOG_MANAGE_REPOSITORIES_BASE</property>
|
<property name="name">DIALOG_MANAGE_REPOSITORIES_BASE</property>
|
||||||
<property name="pos"></property>
|
<property name="pos"></property>
|
||||||
<property name="size">500,300</property>
|
<property name="size">500,300</property>
|
||||||
<property name="style">wxDEFAULT_DIALOG_STYLE</property>
|
<property name="style">wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER</property>
|
||||||
<property name="subclass">; ; forward_declare</property>
|
<property name="subclass">; ; forward_declare</property>
|
||||||
<property name="title">Manage Repositores</property>
|
<property name="title">Manage Repositores</property>
|
||||||
<property name="tooltip"></property>
|
<property name="tooltip"></property>
|
||||||
|
|
|
@ -57,7 +57,7 @@ class DIALOG_MANAGE_REPOSITORIES_BASE : public wxDialog
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
DIALOG_MANAGE_REPOSITORIES_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Manage Repositores"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,300 ), long style = wxDEFAULT_DIALOG_STYLE );
|
DIALOG_MANAGE_REPOSITORIES_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Manage Repositores"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,300 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
||||||
~DIALOG_MANAGE_REPOSITORIES_BASE();
|
~DIALOG_MANAGE_REPOSITORIES_BASE();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue