Commit 6310622b authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

minor

parent 056d015b
...@@ -2311,6 +2311,7 @@ QWidget* DefaultViewPort::getWidget() ...@@ -2311,6 +2311,7 @@ QWidget* DefaultViewPort::getWidget()
void DefaultViewPort::setMouseCallBack(CvMouseCallback m, void* param) void DefaultViewPort::setMouseCallBack(CvMouseCallback m, void* param)
{ {
on_mouse = m; on_mouse = m;
on_mouse_param = param; on_mouse_param = param;
} }
...@@ -3358,6 +3359,8 @@ void GlFuncTab_QT::generateBitmapFont(const std::string& family, int height, int ...@@ -3358,6 +3359,8 @@ void GlFuncTab_QT::generateBitmapFont(const std::string& family, int height, int
__BEGIN__; __BEGIN__;
#ifndef Q_WS_WIN #ifndef Q_WS_WIN
font.setStyleStrategy(QFont::OpenGLCompatible);
if (font.handle())
glXUseXFont(font.handle(), start, count, base); glXUseXFont(font.handle(), start, count, base);
#else #else
SelectObject(hDC, font.handle()); SelectObject(hDC, font.handle());
......
...@@ -198,7 +198,7 @@ int main(int argc, const char* argv[]) ...@@ -198,7 +198,7 @@ int main(int argc, const char* argv[])
while (true) while (true)
{ {
int key = waitKey(1); int key = waitKey(10);
if (key >= 0) if (key >= 0)
key = key & 0xff; key = key & 0xff;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment