mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Fix goToPage() when page_id is not found
CURA-6435
This commit is contained in:
parent
7d096e5734
commit
dfa35bd589
1 changed files with 2 additions and 1 deletions
|
@ -146,7 +146,8 @@ class WelcomePagesModel(ListModel):
|
||||||
page_index = self.getPageIndexById(page_id)
|
page_index = self.getPageIndexById(page_id)
|
||||||
if page_index is None:
|
if page_index is None:
|
||||||
# FIXME: If we cannot find the next page, we cannot do anything here.
|
# FIXME: If we cannot find the next page, we cannot do anything here.
|
||||||
Logger.log("e", "Cannot find page with ID [%s]", page_index)
|
Logger.log("e", "Cannot find page with ID [%s], go to the next page by default", page_index)
|
||||||
|
self.goToNextPage()
|
||||||
return
|
return
|
||||||
|
|
||||||
if self._shouldPageBeShown(page_index):
|
if self._shouldPageBeShown(page_index):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue