@@ -103,26 +103,26 @@ LRESULT CConfigWindow::onCreate()
103103
104104 m_modeGroup.reset (new CGroupBox (L" Custom modes" , WS_CHILD | WS_VISIBLE, m_hwnd));
105105
106- m_modeBox.reset (new CListBox (WS_CHILD | WS_VISIBLE | WS_VSCROLL | LBS_NOTIFY, m_hwnd));
106+ m_modeBox.reset (new CListBox (WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP | LBS_NOTIFY, m_hwnd));
107107 if (m_modes)
108108 updateModeList ();
109109
110110 m_widthLabel.reset (new CStaticWidget (L" Width:" , WS_CHILD | WS_VISIBLE | SS_CENTERIMAGE, m_hwnd));
111111 m_heightLabel.reset (new CStaticWidget (L" Height:" , WS_CHILD | WS_VISIBLE | SS_CENTERIMAGE, m_hwnd));
112112 m_refreshLabel.reset (new CStaticWidget (L" Refresh:" , WS_CHILD | WS_VISIBLE | SS_CENTERIMAGE, m_hwnd));
113113
114- m_modeWidth.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | ES_LEFT | ES_NUMBER, m_hwnd));
115- m_modeHeight.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | ES_LEFT | ES_NUMBER, m_hwnd));
116- m_modeRefresh.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | ES_LEFT | ES_NUMBER, m_hwnd));
114+ m_modeWidth.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_LEFT | ES_NUMBER, m_hwnd));
115+ m_modeHeight.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_LEFT | ES_NUMBER, m_hwnd));
116+ m_modeRefresh.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_LEFT | ES_NUMBER, m_hwnd));
117117
118- m_modeUpdate.reset (new CButton (L" Save" , WS_CHILD | WS_VISIBLE, m_hwnd));
119- m_modeDelete.reset (new CButton (L" Delete" , WS_CHILD | WS_VISIBLE, m_hwnd));
118+ m_modeUpdate.reset (new CButton (L" Save" , WS_CHILD | WS_VISIBLE | WS_TABSTOP , m_hwnd));
119+ m_modeDelete.reset (new CButton (L" Delete" , WS_CHILD | WS_VISIBLE | WS_TABSTOP , m_hwnd));
120120 EnableWindow (*m_modeUpdate, FALSE );
121121 EnableWindow (*m_modeDelete, FALSE );
122122
123123 m_autosizeGroup.reset (new CGroupBox (L" Autosizing" , WS_CHILD | WS_VISIBLE, m_hwnd));
124124 m_defRefreshLabel.reset (new CStaticWidget (L" Default refresh:" , WS_CHILD | WS_VISIBLE | SS_CENTERIMAGE, m_hwnd));
125- m_defRefresh.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | ES_LEFT | ES_NUMBER, m_hwnd));
125+ m_defRefresh.reset (new CEditWidget (WS_CHILD | WS_VISIBLE | ES_LEFT | ES_NUMBER | WS_TABSTOP , m_hwnd));
126126 m_defRefreshHz.reset (new CStaticWidget (L" Hz" , WS_CHILD | WS_VISIBLE | SS_CENTERIMAGE, m_hwnd));
127127
128128 RECT client = { 0 , 0 , (LONG)(436 * m_scale), (LONG)(300 * m_scale) };
0 commit comments