Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
KHY_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Graduate
2020-06-24 13:29:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ed663c43612154df8694156353de76046161e8f1
ed663c43
1 parent
6f85b611
Fix client loggin problem
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
client/client.py
client/client.py
View file @
ed663c4
...
...
@@ -92,8 +92,8 @@ class Client(tk.Frame):
def
logging
(
self
,
text
):
self
.
log
.
config
(
state
=
tk
.
NORMAL
)
self
.
log
.
insert
(
tkinter
.
CURRENT
,
text
)
self
.
log
.
insert
(
tkinter
.
CURRENT
,
'
\n
'
)
self
.
log
.
insert
(
tkinter
.
END
,
text
)
self
.
log
.
insert
(
tkinter
.
END
,
'
\n
'
)
self
.
log
.
config
(
state
=
tk
.
DISABLED
)
...
...
Please
register
or
login
to post a comment