Removed progress bar in favor of loading widget in the address bar

This commit is contained in:
sloumdrone 2018-11-04 21:30:33 -08:00
parent 2382209594
commit 74c1ad4ca8
1 changed files with 2 additions and 3 deletions

5
gui.py
View File

@ -1,7 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import tkinter as tk import tkinter as tk
from tkinter import ttk
import tkinter.simpledialog as dialog import tkinter.simpledialog as dialog
from connect import connect as conn from connect import connect as conn
from parser import parser from parser import parser
@ -145,9 +144,8 @@ class GUI:
# ------------Start navigation methods---------------------------- # ------------Start navigation methods----------------------------
def handle_request(self,event=False, url=False, history=True): def handle_request(self,event=False, url=False, history=True):
self.progress_bar = ttk.Progressbar(self.entry_url, orient="horizontal", length=130, mode='indeterminate') self.progress_bar = tk.Label(self.entry_url, text=' Loading... ', width=12, relief=tk.FLAT, height=1, fg='#FFFFFF', bg=self.TYPES)
self.progress_bar.pack(side=tk.RIGHT, padx=(0,10)) self.progress_bar.pack(side=tk.RIGHT, padx=(0,10))
self.progress_bar.start(10)
self.progress_bar.update_idletasks() self.progress_bar.update_idletasks()
url = url if url else self.entry_url.get() url = url if url else self.entry_url.get()
@ -175,6 +173,7 @@ class GUI:
self.send_to_screen(self.conn.raw_response,self.conn.filetype) self.send_to_screen(self.conn.raw_response,self.conn.filetype)
def parse_url(self, url=False): def parse_url(self, url=False):
parsed_url = self.parser.parse_url(url) parsed_url = self.parser.parse_url(url)