Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions dronecan_gui_tool/widgets/bus_monitor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ def _process_entry_point(channel, iface_name):
logger.info('Bus monitor process started with PID %r', os.getpid())
app = QApplication(sys.argv) # Inheriting args from the parent process

# Set the style for Qt6 to be same across systems

Copilot AI Apr 24, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor grammar: "to be same across systems" reads awkwardly. Consider changing to "to be the same across systems" (or similar) to improve clarity.

Suggested change
# Set the style for Qt6 to be same across systems
# Set the Qt6 style to be the same across systems

Copilot uses AI. Check for mistakes.
app.setStyle("Fusion")

def exit_if_should():
if RUNNING_ON_WINDOWS:
return False
Expand Down
3 changes: 3 additions & 0 deletions dronecan_gui_tool/widgets/plotter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ def _process_entry_point(channel):
logger.info('Plotter process started with PID %r', os.getpid())
app = QApplication(sys.argv) # Inheriting args from the parent process

# Set the style for Qt6 to be same across systems

Copilot AI Apr 24, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor grammar: "to be same across systems" reads awkwardly. Consider changing to "to be the same across systems" (or similar) to improve clarity.

Suggested change
# Set the style for Qt6 to be same across systems
# Set the Qt6 style to be the same across systems

Copilot uses AI. Check for mistakes.
app.setStyle("Fusion")

def exit_if_should():
if RUNNING_ON_WINDOWS:
return False
Expand Down
Loading