Fix display in message boxes when very long messages happened (normally only with Lua messages)

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1338 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2010-02-13 18:23:13 +00:00
parent 87432470f3
commit f64117aeda
5 changed files with 19 additions and 15 deletions

View File

@@ -793,7 +793,7 @@ void Button_Brush_Factory(void)
if (Brush_backup == NULL)
{
Verbose_error_message("Out of memory!");
Verbose_message("Error!", "Out of memory!");
}
else
{
@@ -803,7 +803,7 @@ void Button_Brush_Factory(void)
{
message = lua_tostring(L, 1);
if(message)
Verbose_error_message(message);
Verbose_message("Error!", message);
else
Warning_message("Unknown error loading script!");
}
@@ -812,7 +812,10 @@ void Button_Brush_Factory(void)
int stack_size;
stack_size= lua_gettop(L);
if (stack_size>0 && (message = lua_tostring(L, stack_size))!=NULL)
Verbose_error_message(message);
//Verbose_message("Error running script", message);
Verbose_message("Error!", "Your WM is forcing GrafX2 to resize to something "
"smallerthantheminimalresolution.\n"
"GrafX2 switched to a smaller\npixel scaler to avoid problems.");
else
Warning_message("Unknown error running script!");
}
@@ -841,7 +844,7 @@ void Button_Brush_Factory(void)
#else // NOLUA
void Button_Brush_Factory(void)
{
Verbose_error_message("The brush factory is not available in this build of GrafX2.");
Verbose_message("Error!", "The brush factory is not available in this build of GrafX2.");
}
#endif