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:
authorCampbell Barton <ideasman42@gmail.com>2008-06-24 13:49:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-06-24 13:49:29 +0400
commit533539901b1a50962a5870ee30d7c0d1ba123585 (patch)
tree53bb439393e838580be5a7e97e2928affa7fb929 /source/blender/src
parent02132de7aadee611c8641f01fa44efdf43f54cc4 (diff)
Artists complaining about these popups
* Nothing indicated - is not helpful, and very annoying with occluded geometry with high poly meshes, sometimes the selection doesn't work 100% of the time and the menu pops up over what you want to select. * No (correct) camera error doesn't seem to be needed, has been there since rev 2.
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/editmesh_mods.c4
-rw-r--r--source/blender/src/space.c3
2 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/src/editmesh_mods.c b/source/blender/src/editmesh_mods.c
index d5e34779173..c7a75b32df1 100644
--- a/source/blender/src/editmesh_mods.c
+++ b/source/blender/src/editmesh_mods.c
@@ -2307,7 +2307,7 @@ void selectconnected_mesh(void)
if(em->edges.first==0) return;
if( unified_findnearest(&eve, &eed, &efa)==0 ) {
- error("Nothing indicated ");
+ /* error("Nothing indicated "); */ /* this is mostly annoying, eps with occluded geometry */
return;
}
@@ -2407,7 +2407,7 @@ static void selectconnected_delimit_mesh__internal(short all, short sel)
EditFace *efa_mouse = findnearestface(&dist);
if( !efa_mouse ) {
- error("Nothing indicated ");
+ /* error("Nothing indicated "); */ /* this is mostly annoying, eps with occluded geometry */
return;
}
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 585f6b59ceb..d0c5267ab89 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -437,9 +437,6 @@ static void SaveState(void)
if(G.f & G_TEXTUREPAINT)
texpaint_enable_mipmap();
- if(G.scene->camera==0 || G.scene->camera->type!=OB_CAMERA)
- error("no (correct) camera");
-
waitcursor(1);
}