Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Games
Kigo
Commits
be8da9fd
Commit
be8da9fd
authored
Nov 30, 2018
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use isEmpty() when it's possible
parent
b4ac99fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/gui/widgets/gamewidget.cpp
src/gui/widgets/gamewidget.cpp
+1
-1
No files found.
src/gui/widgets/gamewidget.cpp
View file @
be8da9fd
...
...
@@ -74,7 +74,7 @@ void GameWidget::update()
{
moveLabel
->
setText
(
QString
::
number
(
m_game
->
currentMoveNumber
()));
if
(
m_game
->
moves
().
size
()
>
0
)
{
if
(
!
m_game
->
moves
().
isEmpty
()
)
{
const
Move
last
=
m_game
->
lastMove
();
if
(
last
.
player
()
->
isWhite
())
{
lastMoveLabel
->
setText
(
i18nc
(
"Indication who played the last move"
,
"%1 (white)"
,
last
.
stone
().
toString
()));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment