Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Plugin-TextureControl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
Plugin-TextureControl
Commits
ae8920d7
Commit
ae8920d7
authored
Oct 12, 2016
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed indentation warning
parent
9f302f8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
textureProperties.cc
textureProperties.cc
+8
-7
No files found.
textureProperties.cc
View file @
ae8920d7
...
...
@@ -102,7 +102,7 @@ void texturePropertiesWidget::show(TextureData* _texData, int _id, QString _name
QTreeWidgetItem
*
activeItem
=
0
;
for
(
u
int
i
=
0
;
i
<
texData_
->
textures
().
size
();
i
++
)
for
(
u
nsigned
int
i
=
0
;
i
<
texData_
->
textures
().
size
();
i
++
)
{
if
(
!
texData_
->
textures
()[
i
].
hidden
()
)
{
if
(
texData_
->
textures
()[
i
].
type
()
!=
MULTITEXTURE
)
{
...
...
@@ -133,13 +133,14 @@ void texturePropertiesWidget::show(TextureData* _texData, int _id, QString _name
activeItem
=
parent
;
}
}
}
if
(
textureList
->
invisibleRootItem
()
->
childCount
()
==
0
)
{
QMessageBox
msgBox
(
this
);
msgBox
.
setText
(
"Cannot show Properties. No Textures available!"
);
msgBox
.
exec
();
return
;
}
if
(
textureList
->
invisibleRootItem
()
->
childCount
()
==
0
)
{
QMessageBox
msgBox
(
this
);
msgBox
.
setText
(
"Cannot show Properties. No Textures available!"
);
msgBox
.
exec
();
return
;
}
if
(
id_
==
-
1
)
textureLabel
->
setText
(
"<B>Global Textures</B>"
);
...
...
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