Skip to content

Commit

Permalink
Disable package creator so main loads
Browse files Browse the repository at this point in the history
  • Loading branch information
randomouscrap98 committed Sep 6, 2023
1 parent 6a2e420 commit 885f099
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appresource/device_faqs.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1>Frequently Asked Questions on Arduboy</h1>
<h1>Frequently Asked Arduboy Questions</h1>


<h2>Common terms</h2>
Expand Down
6 changes: 4 additions & 2 deletions widget_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from arduboy.constants import *

import widget_slot
# import widget_slot
import constants
import gui_utils
import utils
Expand All @@ -17,6 +17,8 @@ class PackageWidget(QWidget):
def __init__(self):
super().__init__()

return

full_layout = QVBoxLayout()

# Main group containing all the packaging UI
Expand Down Expand Up @@ -53,7 +55,7 @@ def __init__(self):
def make_slot_widget(self, arduparsed: arduboy.arduhex.ArduboyParsed = None):
if not arduparsed:
arduparsed = arduboy.shortcuts.empty_parsed_arduboy()
result = widget_slot.SlotWidget(arduparsed=arduparsed)
result = QWidget() # widget_slot.SlotWidget(arduparsed=arduparsed)
result.layout.setContentsMargins(5,5,5,5)
return result

Expand Down

0 comments on commit 885f099

Please sign in to comment.