fix mixer rect, textures popup, parallel abr import
This commit is contained in:
@@ -93,23 +93,23 @@ public class MainActivity extends NativeActivity {
|
||||
Log.v("PanoPainterJava", "create path failed: " + brush_thumbs.getAbsolutePath());
|
||||
|
||||
}
|
||||
// patterns
|
||||
File patterns = new File(pano_dir.getAbsolutePath(), "patterns");
|
||||
if (!patterns.exists())
|
||||
// textures
|
||||
File textures = new File(pano_dir.getAbsolutePath(), "textures");
|
||||
if (!textures.exists())
|
||||
{
|
||||
if (patterns.mkdirs())
|
||||
Log.v("PanoPainterJava", "create path " + patterns.getAbsolutePath());
|
||||
if (textures.mkdirs())
|
||||
Log.v("PanoPainterJava", "create path " + textures.getAbsolutePath());
|
||||
else
|
||||
Log.v("PanoPainterJava", "create path failed: " + patterns.getAbsolutePath());
|
||||
Log.v("PanoPainterJava", "create path failed: " + textures.getAbsolutePath());
|
||||
|
||||
}
|
||||
File patterns_thumbs = new File(patterns.getAbsolutePath(), "thumbs");
|
||||
if (!patterns_thumbs.exists())
|
||||
File textures_thumbs = new File(textures.getAbsolutePath(), "thumbs");
|
||||
if (!textures_thumbs.exists())
|
||||
{
|
||||
if (patterns_thumbs.mkdirs())
|
||||
Log.v("PanoPainterJava", "create path " + patterns_thumbs.getAbsolutePath());
|
||||
if (textures_thumbs.mkdirs())
|
||||
Log.v("PanoPainterJava", "create path " + textures_thumbs.getAbsolutePath());
|
||||
else
|
||||
Log.v("PanoPainterJava", "create path failed: " + patterns_thumbs.getAbsolutePath());
|
||||
Log.v("PanoPainterJava", "create path failed: " + textures_thumbs.getAbsolutePath());
|
||||
|
||||
}
|
||||
// settings
|
||||
|
||||
Reference in New Issue
Block a user