Skip to content

Commit

Permalink
[StartWizard]
Browse files Browse the repository at this point in the history
* show DeviceManager only if more than 1 device
  • Loading branch information
jbleyel committed Jan 4, 2025
1 parent 9fa1211 commit 90406e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/StartWizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def hasPartitions(self):
device = parts[3]
if not device.startswith(black) and (search(r"^sd[a-z][1-9][\d]*$", device) or search(r"^mmcblk[\d]p[\d]*$", device)):
count += 1
return count > 0
return count > 1

def keyYellow(self):
if self.wizard[self.currStep]["name"] == "swap":
Expand Down

0 comments on commit 90406e5

Please sign in to comment.