Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
Fixes #1111
Browse files Browse the repository at this point in the history
  • Loading branch information
karasu committed Jan 9, 2019
1 parent 8274648 commit 18e9ca1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/alongside.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class InstallationAlongside(GtkBaseBox):
""" Performs an automatic installation next to a previous installed OS """

# Leave at least 6.5GB for Antergos when shrinking
MIN_ROOT_SIZE = 6500
MIN_ROOT_SIZE = 8000

def __init__(self, params, prev_page="installation_ask", next_page="user_info"):
super().__init__(self, params, "alongside", prev_page, next_page)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Check(GtkBaseBox):

UPOWER_KEY = 'org.freedesktop.UPower'
UPOWER_PATH = '/org/freedesktop/UPower'
MIN_ROOT_SIZE = 16000000000
MIN_ROOT_SIZE = 8000000000

def __init__(self, params, prev_page="language", next_page="location"):
""" Init class ui """
Expand Down
2 changes: 1 addition & 1 deletion src/pages/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _(message):
NM_STATE_CONNECTED_GLOBAL = 70
UPOWER = 'org.freedesktop.UPower'
UPOWER_PATH = '/org/freedesktop/UPower'
MIN_ROOT_SIZE = 6000000000
MIN_ROOT_SIZE = 8000000000


class Summary(GtkBaseBox):
Expand Down

0 comments on commit 18e9ca1

Please sign in to comment.