Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/jkriege2/JKQtPlotter
Browse files Browse the repository at this point in the history
  • Loading branch information
jkriege2 committed Oct 25, 2023
2 parents 8b1c7c0 + a462164 commit 536a6e6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/jkqtmath/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ endif()
if(JKQtPlotter_BUILD_STATIC_LIBS)
add_library(${lib_name} STATIC ${SOURCES} ${HEADERS})
JKQtCommon_setDefaultLibOptions(${lib_name})
target_link_libraries(${libsh_name} PUBLIC JKQTCommonLib)
target_link_libraries(${lib_name} PUBLIC JKQTCommonLib)
set_property(TARGET ${lib_name} PROPERTY OUTPUT_NAME "${lib_name_decorated}")
write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/${lib_name}Version.cmake
VERSION ${PROJECT_VERSION}
Expand Down
9 changes: 7 additions & 2 deletions lib/jkqtplotter/jkqtplotter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1370,8 +1370,13 @@ void JKQTPlotter::resizeEvent(QResizeEvent *event) {
sizeChanged=true;
}
if (sizeChanged) {
resizeTimer.setSingleShot(true);
resizeTimer.start(jkqtp_RESIZE_DELAY);
if (jkqtp_RESIZE_DELAY == 0) {
// Do this now
delayedResizeEvent();
} else {
resizeTimer.setSingleShot(true);
resizeTimer.start(jkqtp_RESIZE_DELAY);
}
}

//updateGeometry();
Expand Down
4 changes: 2 additions & 2 deletions lib/jkqtplotter/jkqtplotter.h
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ JKQTPLOTTER_LIB_EXPORT void initJKQTPlotterResources();
class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
Q_OBJECT
public:
/** \brief sets the global resize delay in milliseconds \a delayMS. After calling this function all plots will use the new delay. This function is thread-safe!
/** \brief sets the global resize delay in milliseconds \a delayMS. After calling this function all plots will use the new delay. Setting the the delay to 0 disables the delayed resize feature. This function is thread-safe!
*
* \see jkqtp_RESIZE_DELAY, setGlobalResizeDelay(), getGlobalResizeDelay(), resizeTimer */
static void setGlobalResizeDelay(int delayMS);
Expand Down Expand Up @@ -1687,7 +1687,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
*/
QTimer resizeTimer;

/** \brief delay for resizing in milliseconds
/** \brief delay for resizing in milliseconds. If set to 0, resize delay is disabled and resizeTimer is unused.
*
* \see jkqtp_RESIZE_DELAY, setGlobalResizeDelay(), getGlobalResizeDelay(), resizeTimer
*/
Expand Down

0 comments on commit 536a6e6

Please sign in to comment.