News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

wxSmith Settings - One radio button is in the wrong group!

Started by tomay3000, October 01, 2019, 09:53:58 PM

Previous topic - Next topic

tomay3000

Hello,

I think that the radio button, illustrated in the attached screenshot is in the wrong group.

Thank you.

Miguel Gimenez

#1
Good catch.

The attached patch fixes this. The solution is just adding the wxRB_GROUP flag to one of the radio buttons, but the patch has grown a lot due to wxSmith sorting things. It also changed automatically FlexGridSizer1->Add(0,0,1, wxEXPAND, 5) to FlexGridSizer1->Add(-1,-1,1, wxEXPAND, 5), and this moved the radio buttons to the left.

EDIT: the moving of radio buttons is fixed in the next message's patch

Miguel Gimenez

This revised patch fixes the original issue and radio buttons moving to the left in the bottom line.

tomay3000

Thank you, I will try it later.
If it has been applied to svn trunk, I will simply update my local clone, and recompile it.

BlueHazzard

Can you please create a ticket?
I will look into the wxSmith things today...

Miguel Gimenez

#5
Ticket 875:

https://sourceforge.net/p/codeblocks/tickets/875/

EDIT: can you take a look to the patch in ticket 845?