Projects
osmocom:nightly
limesuite
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 369
View file
limesuite_20.01.0.176.a470.202306220026.dsc -> limesuite_20.01.0.177.4988.202306230026.dsc
Changed
@@ -2,7 +2,7 @@ Source: limesuite Binary: liblimesuite22.09-1, liblimesuite-dev, limesuite, soapysdr-module-lms7, soapysdr0.7-module-lms7, limesuite-udev, limesuite-images22.09, limesuite-images Architecture: any all -Version: 20.01.0.176.a470.202306220026 +Version: 20.01.0.177.4988.202306230026 Maintainer: Lime Microsystems <apps@limemicro.com> Homepage: https://myriadrf.org/projects/lime-suite/ Standards-Version: 4.1.1 @@ -19,8 +19,8 @@ soapysdr-module-lms7 deb libs optional arch=all soapysdr0.7-module-lms7 deb comm optional arch=any Checksums-Sha1: - d2a8b684d8b9d55cf6ec852c530d85112c0ca7e0 4064876 limesuite_20.01.0.176.a470.202306220026.tar.xz + dddb70174623bdb4c57d0e9870f9e3be43ec0841 4067760 limesuite_20.01.0.177.4988.202306230026.tar.xz Checksums-Sha256: - b0011649ed395a56802df0f8075dba84c93eb28f497b1f614549c99050de72e3 4064876 limesuite_20.01.0.176.a470.202306220026.tar.xz + 36547daa5c9e1de923a81d4e563dfae45d923b94dff24332073bed71db88deb4 4067760 limesuite_20.01.0.177.4988.202306230026.tar.xz Files: - 8dd9fe53ebc915247fa139fbafb7adb0 4064876 limesuite_20.01.0.176.a470.202306220026.tar.xz + 880fd6bcd89afcaab433d4249b954d38 4067760 limesuite_20.01.0.177.4988.202306230026.tar.xz
View file
limesuite_20.01.0.176.a470.202306220026.tar.xz/.tarball-version -> limesuite_20.01.0.177.4988.202306230026.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -20.01.0.176-a470.202306220026 +20.01.0.177-4988.202306230026
View file
limesuite_20.01.0.176.a470.202306220026.tar.xz/debian/changelog -> limesuite_20.01.0.177.4988.202306230026.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -limesuite (20.01.0.176.a470.202306220026) unstable; urgency=medium +limesuite (20.01.0.177.4988.202306230026) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 22 Jun 2023 00:27:29 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Fri, 23 Jun 2023 00:27:34 +0000 limesuite (22.09.1-1) unstable; urgency=low
View file
limesuite_20.01.0.176.a470.202306220026.tar.xz/src/oglGraph/OpenGLGraph.cpp -> limesuite_20.01.0.177.4988.202306230026.tar.xz/src/oglGraph/OpenGLGraph.cpp
Changed
@@ -828,6 +828,10 @@ */ void OpenGLGraph::OnMouseDown(int mouseButton, int X, int Y) { + const float scale = GetContentScaleFactor(); + X *= scale; + Y *= scale; + #ifdef OGL_INVERT_MOUSE_Y Y = settings.windowHeight - Y; #endif // OGL_INVERT_MOUSE_Y @@ -877,6 +881,15 @@ */ void OpenGLGraph::OnMouseUp(int mouseButton, int X, int Y) { + /* Coordinate within the graph window measured in the window (logical) + * coordinate system (without device scaling applied). */ + const int X_window = X; + const int Y_window = Y; + + const float scale = GetContentScaleFactor(); + X *= scale; + Y *= scale; + switch(mouseButton) { case OGLG_LEFT: @@ -906,7 +919,7 @@ case OGLG_RIGHT: if((m_MouseCoord.x2 == m_MouseCoord.x1) && (m_MouseCoord.y2 == m_MouseCoord.y1)) - ShowMenu(X, Y); + ShowMenu(X_window, Y_window); break; } m_actionState = OGLG_IDLE; @@ -921,6 +934,10 @@ */ void OpenGLGraph::OnMouseMove(int X, int Y) { + const float scale = GetContentScaleFactor(); + X *= scale; + Y *= scale; + float spanx, spany, sx, sy; #ifdef OGL_INVERT_MOUSE_Y Y = settings.windowHeight - Y;
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.