mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-23 07:53:45 +08:00
eefc084302
version: sunnypilot v2025.003.000 (dev) date: 2025-12-18T05:48:43 master commit: 16c052af0835f049a67b80251d8cc1114fc08bb4
13 lines
414 B
Python
13 lines
414 B
Python
"""
|
|
Copyright (c) 2021-, Haibin Wen, sunnypilot, and a number of other contributors.
|
|
|
|
This file is part of sunnypilot and is licensed under the MIT License.
|
|
See the LICENSE.md file in the root directory for more details.
|
|
"""
|
|
from openpilot.system.ui.sunnypilot.widgets.list_view import ButtonActionSP
|
|
|
|
|
|
class NoElideButtonAction(ButtonActionSP):
|
|
def get_width_hint(self):
|
|
return super().get_width_hint() + 1
|