python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
wxWidgets and wxPDFDoc crash on init
I am getting a crash on initialisation of my program for no obvious reason that I can see. My callstack is:
1 std::char_traits<wchar_t>::assign char_traits.h 420 0x555555769...
gibbotronic
Votes: 0
Answers: 1
why does wxDC::GetTextExtent() return the same value for a high DPI display in wxWidgets?
I am trying to scale my application written in c++ with wxWidgets for high DPI displays. I am following the guidelines in the official link. Everythings work fine so far except the return value of wxD...
Reza
Votes: 0
Answers: 1
Prevent title/toolbar inlining on macOS using wxPython
With
tb = myFrame.CreateToolBar()
tb.AddTool(wx.ID_ANY, 'A', wx.Bitmap("plus.png"))
tb.AddStretchableSpace()
tb.AddTool(wx.ID_ANY, 'B', wx.Bitmap("plus.png"))
tb.Realize()
I get
...
sr3
Votes: 0
Answers: 1