Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Akascape authored Jun 1, 2023
1 parent 8fad984 commit 3c634f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tknodesystem/node_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def value_args(args):
default_args = {'width': 100, 'height': 50, 'value': 0, 'border_color': 'white', 'text': None,
'corner_radius': 25, 'border_width': 0, 'fg_color': '#37373D', 'text_color': 'white',
'font': ('', 10), 'socket_radius': 8, 'socket_hover': True, 'socket_color': 'green',
'socket_hover_color': 'grey50', 'highlightcolor': '#52d66c', 'hover': True, 'hover_text': None,
'socket_hover_color': 'grey50', 'highlightcolor': '#52d66c', 'hover': True,
'click_command': None, 'side': 'right', 'x': None, 'y': None, 'num': None, 'justify': 'center'}

args.pop("canvas")
Expand Down Expand Up @@ -50,7 +50,7 @@ def func_args(args):
def compile_args(args):
default_args = {'width': 100, 'height': 50, 'border_color': '#37373D', 'text': 'Compile', 'socket_radius': 8, 'justify': 'center',
'corner_radius': 25, 'x': None, 'y': None, 'border_width': 0, 'fg_color': '#37373D', 'text_color': 'white',
'font': ('', 10), 'highlightcolor': '#52d66c', 'hover': True, 'socket_hover': True, 'socket_color': 'green', 'hover_text': None,
'font': ('', 10), 'highlightcolor': '#52d66c', 'hover': True, 'socket_hover': True, 'socket_color': 'green',
'socket_hover_color': 'grey50', 'show_value': True, 'command': None, 'click_command': None, 'side': 'left', 'num': None}

args.pop("canvas")
Expand Down

0 comments on commit 3c634f7

Please sign in to comment.