Skip to content

Commit

Permalink
[Fix] t-SNE wxWidgets debug alert (#2516)
Browse files Browse the repository at this point in the history
  • Loading branch information
lixun910 authored Jan 29, 2025
1 parent fcdf81d commit 0162b81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DialogTools/tSNEDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ void TSNEDlg::CreateControls()
std::vector<double> X(n, 0), Y(n,0);
std::vector<bool> X_undef(n, false), Y_undef(n,false);
int style = AnimatePlotcanvas::DEFAULT_STYLE | AnimatePlotcanvas::show_vert_axis_through_origin | AnimatePlotcanvas::show_data_points | AnimatePlotcanvas::show_horiz_axis_through_origin;
m_animate = new AnimatePlotcanvas(this, NULL, project, X, Y, X_undef, Y_undef,
m_animate = new AnimatePlotcanvas(panel, NULL, project, X, Y, X_undef, Y_undef,
"", "", style, std::vector<std::vector<int> >(),
"", "", wxDefaultPosition,
wxSize(300, 300));
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ namespace Gda {
const int version_major = 1;
const int version_minor = 22;
const int version_build = 0;
const int version_subbuild = 12;
const int version_subbuild = 14;
const int version_year = 2025;
const int version_month = 1;
const int version_day = 15;
const int version_day = 29;
const int version_night = 0;
const int version_type = 2; // 0: alpha, 1: beta, 2: release
} // namespace Gda

0 comments on commit 0162b81

Please sign in to comment.