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
KSudoku
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
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Games
KSudoku
Commits
3a4d7ea8
Commit
3a4d7ea8
authored
Mar 16, 2012
by
Ian Wadham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow the possibility of a three-dimensional custom-built puzzle.
svn path=/trunk/KDE/kdegames/ksudoku/; revision=1285810
parent
7efb33af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
src/gui/views/ksview.cpp
src/gui/views/ksview.cpp
+9
-0
No files found.
src/gui/views/ksview.cpp
View file @
3a4d7ea8
...
...
@@ -60,7 +60,16 @@ void KsView::createView() {
break
;
}
case
TypeCustom
:
{
#ifdef OPENGL_SUPPORT
if
(
m_game
.
puzzle
()
->
graph
()
->
sizeZ
()
>
1
)
{
setWidget
(
new
RoxdokuView
(
m_game
,
0
,
0
));
}
else
{
setWidget
(
new
View2D
(
0
,
m_game
,
m_gameActions
));
}
#else
setWidget
(
new
View2D
(
0
,
m_game
,
m_gameActions
));
#endif
break
;
}
#ifdef OPENGL_SUPPORT
...
...
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