Skip to content

Commit e732bc4

Browse files
Fix two small issues
1 parent b3e8a76 commit e732bc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ add_library(${PROJECT_NAME} SHARED ${PLUGIN_SOURCES} ${RENDER_SOURCES} ${EPHYS_S
109109
# -----------------------------------------------------------------------------
110110
# Include ManiVault headers, including system data plugins
111111
target_include_directories(${PROJECT_NAME} PRIVATE "${ManiVault_INCLUDE_DIR}")
112-
target_include_directories(${PROJECT_NAME} PRIVATE "${CMAKE_SOURCE_DIR}/src")
112+
target_include_directories(${PROJECT_NAME} PRIVATE "${PROJECT_SOURCE_DIR}/src")
113113
#target_include_directories(${PROJECT_NAME} PRIVATE "${PROJECT_SOURCE_DIR}/3rdparty/curl/include/")
114114
target_include_directories(${PROJECT_NAME} PRIVATE "${MV_CMD_INSTALL_DIR}/$<CONFIGURATION>/include/")
115115
target_include_directories(${PROJECT_NAME} PRIVATE "${MV_EPD_INSTALL_DIR}/$<CONFIGURATION>/include/")

src/RoundedPopup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RoundedPopup::RoundedPopup(QWidget* parent) :
1111
setFixedWidth(400);
1212

1313
_layout = new QVBoxLayout(this);
14-
_layout->setContentsMargins(16, 16, 16, 16); // space for the card + shadow
14+
_layout->setContentsMargins(16, 16, 16, 16); // space for the card + shadow
1515
}
1616

1717
void RoundedPopup::SetWidget(QWidget* widget)

0 commit comments

Comments
 (0)