Odd behavior of GLDisplay plugin

Issue #15 resolved
Former user created an issue

When initializing a GLDisplay window at certain positions it clearly appears to be at the wrong place.

Example: mydisp = dataIO("GLDisplay",0,0,50,50) # does not start at the (0,0) position.

Shifting the window in x- or y-direction by one pixel does not always show the expected result.

The issue does not appear in itom 3.1

Comments (4)

  1. M. Gronle

    As a temporary workaround it is possible to set the parameters x0 and y0 to the desired value after having initialized the plugin:

    mydisp = dataIO("GLDisplay",0,0,50,50)
    mydisp.setParam("x0", 0)
    mydisp.setParam("y0", 0)
    

  2. Log in to comment