Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/platform/x11/x11platformclipboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ bool isSelectionIncomplete()

return event.state & (Button1Mask | ShiftMask);
#else
return true;
return false;
#endif
}

Expand Down
2 changes: 1 addition & 1 deletion src/tests/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ class TestInterfaceImpl final : public TestInterface {
{
int exitCode = QTest::qExec(testObject, argc, argv);

const int maxRuns = m_env.value("COPYQ_TESTS_RERUN_FAILED", "0").toInt();
const int maxRuns = m_env.value("COPYQ_TESTS_RERUN_FAILED", "1").toInt();
for (int runCounter = 0; exitCode != 0 && !m_failed.isEmpty() && runCounter < maxRuns; ++runCounter) {
qInfo() << QString::fromLatin1("Rerunning %1 failed tests (%2/%3): %4")
.arg(m_failed.size())
Expand Down
Loading