mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-13 07:47:14 +03:00
[Minor] Clarify Inheritence
This commit is contained in:
parent
0410806152
commit
5cc08f2517
@ -63,7 +63,7 @@ class Label(tk.Label):
|
||||
super().__init__(master, **kw)
|
||||
|
||||
|
||||
class EntryMenu:
|
||||
class EntryMenu(ttk.Entry):
|
||||
"""Extended entry widget that includes a context menu with Copy, Cut-and-Paste commands."""
|
||||
|
||||
def __init__(self, *args, **kwargs) -> None:
|
||||
@ -120,7 +120,7 @@ class EntryMenu:
|
||||
pass
|
||||
|
||||
|
||||
class Entry(ttk.Entry, EntryMenu):
|
||||
class Entry(EntryMenu):
|
||||
"""Custom t(t)k.Entry class to fix some display issues."""
|
||||
|
||||
# DEPRECATED: Migrate to ttk.Entry or EntryMenu. Will remove in 5.12 or later.
|
||||
|
Loading…
x
Reference in New Issue
Block a user