Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-09 14:36:56 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-09 14:41:26 +0300
commitcf682b9dab36c4b96084c6f7b5e4ebc1f33ca28e (patch)
tree623402d486f638d4157742903899d80945117f1b /source/blender/windowmanager/intern/wm_window.c
parent26b1216629c8a7f6201333514b8fdbf43e10b385 (diff)
GPU: show more descriptive labels on unsupported GPU dialog
Thanks to Ray Molenkamp for the help with the Windows implementation. Fixes T70521 Differential Revision: https://developer.blender.org/D6023
Diffstat (limited to 'source/blender/windowmanager/intern/wm_window.c')
-rw-r--r--source/blender/windowmanager/intern/wm_window.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_window.c b/source/blender/windowmanager/intern/wm_window.c
index ac10f9489a2..fa2320585d7 100644
--- a/source/blender/windowmanager/intern/wm_window.c
+++ b/source/blender/windowmanager/intern/wm_window.c
@@ -2435,10 +2435,12 @@ void WM_opengl_context_release(void *context)
void WM_ghost_show_message_box(const char *title,
const char *message,
+ const char *help_label,
+ const char *continue_label,
const char *link,
GHOST_DialogOptions dialog_options)
{
BLI_assert(g_system);
- GHOST_ShowMessageBox(g_system, title, message, link, dialog_options);
+ GHOST_ShowMessageBox(g_system, title, message, help_label, continue_label, link, dialog_options);
}
/** \} */