diff options
author | Rr42 | 2018-06-06 12:33:47 +0530 |
---|---|---|
committer | Rr42 | 2018-06-06 12:33:47 +0530 |
commit | 0c37bab6d63de075911db1147e38c2f9e2283d6f (patch) | |
tree | 0eb4b7567655ef502d89c832968b21340fa7fe1f /ldmicro/undoredo.cpp | |
parent | 86b0579d383105db5e5fa8e3e4cbbbf428ededf5 (diff) | |
parent | 6be3a6d8b3b7912948936090f3205865395d8474 (diff) | |
download | LDMicroGtk-0c37bab6d63de075911db1147e38c2f9e2283d6f.tar.gz LDMicroGtk-0c37bab6d63de075911db1147e38c2f9e2283d6f.tar.bz2 LDMicroGtk-0c37bab6d63de075911db1147e38c2f9e2283d6f.zip |
Merge branch 'Core_port' into GUI_port
Diffstat (limited to 'ldmicro/undoredo.cpp')
-rw-r--r-- | ldmicro/undoredo.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ldmicro/undoredo.cpp b/ldmicro/undoredo.cpp index 43e6693..69831d8 100644 --- a/ldmicro/undoredo.cpp +++ b/ldmicro/undoredo.cpp @@ -22,7 +22,7 @@ // the entire program at all times. // Jonathan Westhues, split May 2005 //----------------------------------------------------------------------------- -#include <windows.h> +#include "linuxUI.h" #include <stdio.h> #include <stdlib.h> @@ -198,9 +198,9 @@ void UndoUndo(void) } else { SetUndoEnabled(FALSE, TRUE); } - RefreshControlsToSettings(); - RefreshScrollbars(); - InvalidateRect(MainWindow, NULL, FALSE); + // RefreshControlsToSettings(); + // RefreshScrollbars(); + // InvalidateRect(MainWindow, NULL, FALSE); } //----------------------------------------------------------------------------- @@ -221,9 +221,9 @@ void UndoRedo(void) } else { SetUndoEnabled(TRUE, FALSE); } - RefreshControlsToSettings(); - RefreshScrollbars(); - InvalidateRect(MainWindow, NULL, FALSE); + //RefreshControlsToSettings(); + //RefreshScrollbars(); + //InvalidateRect(MainWindow, NULL, FALSE); } //----------------------------------------------------------------------------- |