mirror of https://github.com/PCSX2/pcsx2.git
wxWidgets/Win32: Force spin control contents to align to the right (they show integers! By rule numbers should be right-justified).
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2170 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
03fc72dd3f
commit
1a99183639
|
@ -361,12 +361,17 @@ bool wxSpinCtrl::Create(wxWindow *parent,
|
|||
|
||||
// create the text window
|
||||
|
||||
// PCSX2: Add right-handed alignment to the buddy text control, since any self-
|
||||
// respecting integer deserves to be right-justified. I'd do this from the user
|
||||
// lib instead of wxWidgets directly, but since the buddy textctrl isn't exposed
|
||||
// as a wxWindow, I can't modify it's flags. >_< --air
|
||||
|
||||
m_hwndBuddy = (WXHWND)::CreateWindowEx
|
||||
(
|
||||
exStyle, // sunken border
|
||||
_T("EDIT"), // window class
|
||||
NULL, // no window title
|
||||
msStyle, // style (will be shown later)
|
||||
msStyle | ES_RIGHT, // style (will be shown later) [PCSX2, see above]
|
||||
pos.x, pos.y, // position
|
||||
0, 0, // size (will be set later)
|
||||
GetHwndOf(parent), // parent
|
||||
|
|
Loading…
Reference in New Issue