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
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
7a559305
Commit
7a559305
authored
Feb 09, 2018
by
schultz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into unstable
parents
adb3dc11
2e10ee32
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
Documentation/DeveloperHelpSources/changelog.docu
Documentation/DeveloperHelpSources/changelog.docu
+2
-0
libs_required/ACG/GL/globjects.hh
libs_required/ACG/GL/globjects.hh
+1
-1
widgets/coreWidget/CoreWidget.cc
widgets/coreWidget/CoreWidget.cc
+5
-1
widgets/coreWidget/keyHandling.cc
widgets/coreWidget/keyHandling.cc
+1
-0
No files found.
Documentation/DeveloperHelpSources/changelog.docu
View file @
7a559305
...
...
@@ -9,6 +9,8 @@
- Queued cross plugin interconnection feature
- Use QOpenGLWidget
- Switched to Qt command line parsing and removed SimpleOpt
- Fix clang warning by avoiding GNU extension
- Do not automatically save file immediately after loading with ctrl-o
- <b>ACG</b>
- Clamp shininess in Materialnode (caused GL Errors)
- Better Material support in Materialnode (emissive and refractive materials)
...
...
libs_required/ACG/GL/globjects.hh
View file @
7a559305
...
...
@@ -151,7 +151,7 @@ public:
char
*
offset
(
unsigned
int
_offset
)
const
{
return
((
char
*
)
NULL
+
_offset
);
return
reinterpret_cast
<
char
*>
(
_offset
);
}
GLuint
id
()
const
{
return
vbo
;}
...
...
widgets/coreWidget/CoreWidget.cc
View file @
7a559305
...
...
@@ -950,7 +950,11 @@ CoreWidget::updateRecent()
}
}
// Workaround for QMenu issue on MacOS: https://bugreports.qt.io/browse/QTBUG-63848
// Without this, the recent files menu entries are all disabled after using the menu once:
// https://www.graphics.rwth-aachen.de:9000/OpenFlipper-Free/OpenFlipper-Free/issues/139
recentFilesMenu_
->
setEnabled
(
false
);
recentFilesMenu_
->
setEnabled
(
true
);
}
void
...
...
widgets/coreWidget/keyHandling.cc
View file @
7a559305
...
...
@@ -605,6 +605,7 @@ void CoreWidget::coreKeyPressEvent (QKeyEvent* _e){
case
Qt
::
Key_O
:
loadMenu
();
return
;
case
Qt
::
Key_S
:
saveMenu
();
...
...
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