Fix incorrect filename regular expressions.
This commit is contained in:
parent
3cc6cae97e
commit
4fe4efe859
|
@ -140,6 +140,7 @@
|
|||
- Fix removing a pin in the Seam Allowance tool dialog.
|
||||
- Fix label size for case with two pins.
|
||||
- Fix crash while synchronize measurements.
|
||||
- Fix incorrect filename regular expressions.
|
||||
|
||||
# Version 0.6.1 October 23, 2018
|
||||
- [#885] Regression. Broken support for multi size measurements.
|
||||
|
|
|
@ -43,9 +43,9 @@
|
|||
#include <QGlobalStatic>
|
||||
|
||||
#ifndef Q_OS_WIN
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, baseFilenameRegExp, (QLatin1String("^[^/]+$")))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, baseFilenameRegExp, (QLatin1String("^[^\\/]+$")))
|
||||
#else
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, baseFilenameRegExp, (QLatin1String("^[^\\:?\"*|/<>]+$")))
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, baseFilenameRegExp, (QLatin1String("^[^\\:?\"*|\\/<>]+$")))
|
||||
#endif
|
||||
|
||||
bool DialogSaveLayout::havePdf = false;
|
||||
|
|
Loading…
Reference in New Issue
Block a user