Commit
21c3a7cf43b1300ca8b516ec98d35b8c9dddb8c3
Authored by
tfmoraes
Exists in
master
and in
67 other branches
3d_inter_style, MIPs, beta3, beta4, brush_pix, canvas_reeng, canvas_text, casmoothing_cython, clean, command-line, cython_threshold, debian_cython, editor_improvements, encoding, ff_mask, ff_mask_improv, ffill_gui, ffill_segmentation, fill_holes_auto, fixes_pre_beta5, floodfill, get_pixel, import_mesh, interactor_style, inv3.0.1, mactoolbar, mactoolbar_bkp, manual_v3.1, mask_boolean_op, mask_boolean_op_bkp, mask_copy, mask_greatest_component, measure, measure_canvas, measure_improvements, measure_placement_test, measure_spacing, orientation, phoenix, region_growing_confidence, remote, remove_local_wxpython, rmatsuda-fix_ref_MTC, rmatsuda-fix_remove_marker_bug, rmatsuda-trigger_bug_fix, rotvol, segmentation_menu, select_part, smoothing_bin, smoothing_bin_pll, surface_area, threshold_history, user_guide_en, usp-navegador, vti, vtk6, watershed, watershed_improvements, watershed_improvements_bkp, watershed_merge, workdir, wwwlgui, wx2.9_mac, wxgtk3, wxgtk3_b5, wxgtk3_bkp, xmartlabs-command-line
FIX: Resolved the problem with encoding on opening an invesalius 3 project in windows
| @@ -203,7 +203,7 @@ class Project(object): |
| @@ -203,7 +203,7 @@ class Project(object): |
203
| return measures |
203
| return measures |
204
| |
204
| |
205
| def SavePlistProject(self, dir_, filename): |
205
| def SavePlistProject(self, dir_, filename): |
206
| - dir_temp = tempfile.mkdtemp(filename) |
206
| + dir_temp = tempfile.mkdtemp() |
207
| filename_tmp = os.path.join(dir_temp, 'matrix.dat') |
207
| filename_tmp = os.path.join(dir_temp, 'matrix.dat') |
208
| |
208
| |
209
| project = { |
209
| project = { |