Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small edits relevant for the FastPathology platform #136

Merged
merged 7 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small bug fixes in window widget
  • Loading branch information
andreped committed Oct 6, 2020
commit dd247963de3c8ac15a09e4dcdd3c9c690d0f5ba4
Empty file added .vs/CMake Overview
Empty file.
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": "x64-Debug"
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
5 changes: 1 addition & 4 deletions source/FAST/Visualization/WindowWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void WindowWidget::keyPressEvent(QKeyEvent *event) {
}

void WindowWidget::dragEnterEvent(QDragEnterEvent *event) {
Reporter::info() << "\nDrag event..." << Reporter::end();
Reporter::info() << "Drag event received in window widget" << Reporter::end();
if (event->mimeData()->hasUrls()) {
event->acceptProposedAction();
}
Expand All @@ -36,9 +36,6 @@ void WindowWidget::dropEvent(QDropEvent *event) {
fileNames.push_back(fileName);
Reporter::info() << "Dropped file:" << fileName.toStdString() << Reporter::end();
}
foreach(QString curr, fileNames) {
Reporter::info() << "\nFile: " << curr.toStdString() << Reporter::end();
}
emit filesDropped(fileNames);
}

Expand Down