Skip to content

Commit

Permalink
Don't show info about vJoy as output for vJoy as input devices
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteMagic committed Apr 22, 2018
1 parent 7ee1899 commit ff4bf5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gremlin/ui/device_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,9 @@ def __init__(
self.left_panel_layout.addWidget(self.input_item_list_view)

# Add a help text for the purpose of the vJoy tab
if device is not None and device.hardware_id == 305446573:
if device is not None and \
device.is_virtual and \
not vjoy_as_input.get(device.vjoy_id, False):
label = QtWidgets.QLabel(
"This tab allows assigning a response curve to virtual axis. "
"The purpose of this is to enable split and merge axis to be "
Expand Down

0 comments on commit ff4bf5a

Please sign in to comment.