add imports change and a dd logo path

This commit is contained in:
ericbsd
2021-06-24 21:34:08 -03:00
parent bb4615d71f
commit 3da4686c06
+3 -3
View File
@@ -15,10 +15,10 @@ from partition import Partitions
from use_zfs import ZFS from use_zfs import ZFS
from boot_manager import bootManager from boot_manager import bootManager
from partition_handler import create_disk_partition_db from partition_handler import create_disk_partition_db
from install import installProgress, installSlide from install import installProgress, installWindow
from network_setup import network_setup from network_setup import network_setup
logo = "/usr/local/lib/gbi/logo.png" logo = "/usr/local/lib/gbi/image/logo.png"
tmp = "/tmp/.gbi/" tmp = "/tmp/.gbi/"
if not os.path.exists(tmp): if not os.path.exists(tmp):
os.makedirs(tmp) os.makedirs(tmp)
@@ -113,7 +113,7 @@ class MainWindow():
elif page == 3: elif page == 3:
Ibox = Gtk.VBox(homogeneous=False, spacing=0) Ibox = Gtk.VBox(homogeneous=False, spacing=0)
Ibox.show() Ibox.show()
install = installSlide() install = installWindow()
get_install = install.get_model() get_install = install.get_model()
Ibox.pack_start(get_install, True, True, 0) Ibox.pack_start(get_install, True, True, 0)
label = Gtk.Label(label="Installation") label = Gtk.Label(label="Installation")