Skip to content

Commit

Permalink
Update todos
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketok4321 committed Aug 17, 2023
1 parent 3c97f1d commit ae1c2d5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/gauge.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, **kwargs):

self.drawing_area.set_draw_func(self.draw)

def draw(self, da, ctx, width, height): # TODO: Try blue-green color scheme, like in adwaita demo
def draw(self, da, ctx, width, height):
IS_LIGHT = not Adw.StyleManager.get_default().get_dark()

ARC_SIZE = min(width, height) * 0.85
Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def fetch_servers(self):
self.win.start_view.server_selector.set_model(Gtk.StringList.new(list(map(lambda s: s.name, self.servers))))
return True

def on_about_action(self, widget, _): #TODO: Credit speedtest-cli and ookla
def on_about_action(self, widget, _): #TODO: Credit librespeed
about = Adw.AboutWindow(transient_for=self.props.active_window,
application_name="Speedtest",
application_icon="xyz.ketok.Speedtest",
Expand Down
2 changes: 0 additions & 2 deletions src/ui/views/test.blp
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using Gtk 4.0;
using Adw 1;

//TODO: Jitter?

template $TestView : Box {
orientation: vertical;

Expand Down

0 comments on commit ae1c2d5

Please sign in to comment.