Fixed groupbox-caused tab issues on Windows for now (uninitialized memory bug; will preoprly fix later).
This commit is contained in:
parent
df867375ce
commit
3ec28551e6
|
@ -24,6 +24,8 @@ static void onDestroy(void *data)
|
||||||
static void groupPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_t *height)
|
static void groupPreferredSize(uiControl *c, uiSizing *d, intmax_t *width, intmax_t *height)
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
|
*width = 0;
|
||||||
|
*height = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void groupSetChild(uiGroup *gg, uiControl *c)
|
static void groupSetChild(uiGroup *gg, uiControl *c)
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
#include "uipriv_windows.h"
|
#include "uipriv_windows.h"
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
// - page 2's top is clipped on wine
|
|
||||||
// - group on page 2 is wrecking things on real windows
|
|
||||||
// - comctl5 on real windows: tabs get drawn behind checkbox
|
// - comctl5 on real windows: tabs get drawn behind checkbox
|
||||||
|
|
||||||
struct tab {
|
struct tab {
|
||||||
|
|
Loading…
Reference in New Issue