Skip to content

Commit 3acd7ff

Browse files
committed
Update copyright & window sizing
1 parent 5bf0a94 commit 3acd7ff

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

source/form.fbp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3099,10 +3099,10 @@
30993099
<property name="hidden">0</property>
31003100
<property name="id">wxID_ANY</property>
31013101
<property name="maximum_size"></property>
3102-
<property name="minimum_size"></property>
3102+
<property name="minimum_size">250,200</property>
31033103
<property name="name">AddNewInstallDlgBase</property>
31043104
<property name="pos"></property>
3105-
<property name="size">300,200</property>
3105+
<property name="size">300,300</property>
31063106
<property name="style">wxCAPTION|wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSTAY_ON_TOP</property>
31073107
<property name="subclass">; ; forward_declare</property>
31083108
<property name="title">Install New Editor Version</property>

source/interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ OpenWithEditorDlgBase::~OpenWithEditorDlgBase()
374374

375375
AddNewInstallDlgBase::AddNewInstallDlgBase( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
376376
{
377-
this->SetSizeHints( wxDefaultSize, wxDefaultSize );
377+
this->SetSizeHints( wxSize( 250,200 ), wxDefaultSize );
378378

379379
installSearchSizer = new wxBoxSizer( wxVERTICAL );
380380

source/interface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class AddNewInstallDlgBase : public wxDialog
139139

140140
public:
141141

142-
AddNewInstallDlgBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Install New Editor Version"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 300,200 ), long style = wxCAPTION|wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSTAY_ON_TOP );
142+
AddNewInstallDlgBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Install New Editor Version"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 300,300 ), long style = wxCAPTION|wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSTAY_ON_TOP );
143143
~AddNewInstallDlgBase();
144144

145145
};

source/interface_derived.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void MainFrameDerived::OnAbout(wxCommandEvent& event)
161161
{
162162
wxAboutDialogInfo aboutInfo;
163163
aboutInfo.SetName("Unity Hub Native");
164-
aboutInfo.SetCopyright("(C) Ravbug 2019");
164+
aboutInfo.SetCopyright("(C) Ravbug 2021");
165165
aboutInfo.SetDescription("Developed with wxWidgets in C++");
166166
#if defined __linux__
167167
aboutInfo.SetWebSite("https://github.com/ravbug/UnityHubNative");

0 commit comments

Comments
 (0)