mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Remove some differences between tk/tile.
This commit is contained in:
parent
1302aa395c
commit
2f7839e430
2 changed files with 3 additions and 3 deletions
|
@ -29,8 +29,8 @@ import ttk
|
||||||
from tkColorChooser import askcolor
|
from tkColorChooser import askcolor
|
||||||
|
|
||||||
# PySol imports
|
# PySol imports
|
||||||
from pysollib.mfxutil import KwStruct
|
|
||||||
from pysollib.mygettext import _, n_
|
from pysollib.mygettext import _, n_
|
||||||
|
from pysollib.mfxutil import KwStruct
|
||||||
|
|
||||||
# Toolkit imports
|
# Toolkit imports
|
||||||
from tkwidget import MfxDialog
|
from tkwidget import MfxDialog
|
||||||
|
|
|
@ -78,12 +78,12 @@ class ColorsDialog(MfxDialog):
|
||||||
(_('Highlight not matching:'), self.not_matching_var),
|
(_('Highlight not matching:'), self.not_matching_var),
|
||||||
):
|
):
|
||||||
Tkinter.Label(frame, text=title, anchor='w',
|
Tkinter.Label(frame, text=title, anchor='w',
|
||||||
).grid(row=row, column=0, sticky='we')
|
).grid(row=row, column=0, sticky='we')
|
||||||
l = Tkinter.Label(frame, width=10, height=2,
|
l = Tkinter.Label(frame, width=10, height=2,
|
||||||
bg=var.get(), textvariable=var)
|
bg=var.get(), textvariable=var)
|
||||||
l.grid(row=row, column=1, padx=5)
|
l.grid(row=row, column=1, padx=5)
|
||||||
b = Tkinter.Button(frame, text=_('Change...'), width=10,
|
b = Tkinter.Button(frame, text=_('Change...'), width=10,
|
||||||
command=lambda l=l: self.selectColor(l))
|
command=lambda l=l: self.selectColor(l))
|
||||||
b.grid(row=row, column=2)
|
b.grid(row=row, column=2)
|
||||||
row += 1
|
row += 1
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Reference in a new issue