Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions src/ManualClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

import Utils

if __name__ == "__main__":
Utils.init_logging("ManualClient", exception_logger="Client")

from NetUtils import ClientStatus
from CommonClient import gui_enabled, logger, get_base_parser, ClientCommandProcessor, server_loop
from MultiServer import mark_raw
Expand Down Expand Up @@ -322,10 +319,6 @@ class ManualControlsStyledLayout(BoxLayout):
background_color = ColorProperty()

class ManualManager(ui):
logging_pairs = [
("Client", "Archipelago"),
("Manual", "Manual"),
]
base_title = "Archipelago Manual Client"
listed_items = {"(No Category)": []}
item_categories = ["(No Category)"]
Expand Down Expand Up @@ -358,11 +351,7 @@ def build(self) -> Layout:

self.grid.add_widget(self.manual_game_layout, 3)

for child in self.tabs.tab_list:
if child.text == "Manual":
panel = child # instead of creating a new TabbedPanelItem, use the one we use above to make the tabs show

panel.content = ManualTabLayout(orientation="vertical")
panel = self.add_client_tab("Manual", ManualTabLayout(orientation="vertical"))

self.controls_panel = ManualControlsLayout(orientation="horizontal", size_hint_y=None, height=dp(40))
self.tracker_and_locations_panel = TrackerAndLocationsLayout(cols = 2)
Expand Down