1
0
Fork 0
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:
Shlomi Fish 2016-02-25 16:01:12 +02:00
parent 1302aa395c
commit 2f7839e430
2 changed files with 3 additions and 3 deletions

View file

@ -29,8 +29,8 @@ import ttk
from tkColorChooser import askcolor
# PySol imports
from pysollib.mfxutil import KwStruct
from pysollib.mygettext import _, n_
from pysollib.mfxutil import KwStruct
# Toolkit imports
from tkwidget import MfxDialog

View file

@ -78,12 +78,12 @@ class ColorsDialog(MfxDialog):
(_('Highlight not matching:'), self.not_matching_var),
):
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,
bg=var.get(), textvariable=var)
l.grid(row=row, column=1, padx=5)
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)
row += 1
#