Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura/UI
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2021-06-30 17:46:19 +0300
committerGhostkeeper <rubend@tutanota.com>2021-06-30 17:46:19 +0300
commit88954922d4fbb6d64981842b4f5b71ddf5a31871 (patch)
treeb5be096721074d2f3c8d982d55dc1b7531643df6 /cura/UI
parent4f37bcec0bed68ce8f512ffc9be8c3d7748cb89b (diff)
parent45977e109bd4dcc1fdb8d9b3d2e9d5ee09668203 (diff)
Merge branch 'master' into libArachne_rebased
Conflicts: resources/texts/change_log.txt -> Adding 4.10 release notes in between 4.9 and Arachne.
Diffstat (limited to 'cura/UI')
-rw-r--r--cura/UI/WhatsNewPagesModel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/UI/WhatsNewPagesModel.py b/cura/UI/WhatsNewPagesModel.py
index db0f4b3a74..11320a0ebb 100644
--- a/cura/UI/WhatsNewPagesModel.py
+++ b/cura/UI/WhatsNewPagesModel.py
@@ -29,7 +29,7 @@ class WhatsNewPagesModel(WelcomePagesModel):
for filename in files:
basename = os.path.basename(filename)
base, ext = os.path.splitext(basename)
- if ext not in include or not base.isdigit():
+ if ext.lower() not in include or not base.isdigit():
continue
page_no = int(base)
highest = max(highest, page_no)