Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development
AutoVersioning changes log window appears too small
Cryogen:
Hi there,
--- Quote from: k1mgy on June 21, 2010, 07:42:40 pm ---Thank you very much!
Do you mean patch 12?
--- End quote ---
You're welcome. No, patch 2 is right.
--- Quote from: k1mgy on June 21, 2010, 07:42:40 pm ---Will this go into the next nightly build? As I have never done a patch build, perhaps better to get it in the nightly?
--- End quote ---
Probably not. I hope it will get there but the release cycle is quite slow as there's lots to get through. You do need to build from the SVN source, though, which requires some setting up and fiddling about. In the meantime you can try these:
In src\plugins\contrib\AutoVersioning\avChangesDlg.cpp, find
--- Code: --- SetClientSize(wxSize(700,300));
--- End code ---
at line 46. You can adjust the dialogue size here. The patch sets it to:
--- Code: --- SetClientSize(wxSize(800,300));
--- End code ---
After
--- Code: --- SetSizer(BoxSizer1);
--- End code ---
at line 74, insert this to set the minimum size:
--- Code: --- BoxSizer1->SetMinSize(800, 200);
--- End code ---
After
--- Code: --- grdChanges->AutoSize();
--- End code ---
at line 90, add:
--- Code: --- grdChanges->SetColSize(0, 60);
grdChanges->SetColSize(1, 645);
--- End code ---
to set the column widths.
you can play with the numbers to adjust the sizes to suit.
Have fun,
Cryo.
Navigation
[0] Message Index
[*] Previous page
Go to full version