Widget now supports creating keyframe and standard values, supports dragging from sliders (not creating an undo command for each drag), and everything is undoable.
12 lines
144 B
C++
12 lines
144 B
C++
#ifndef KEYFRAMEVIEWUNDO_H
|
|
#define KEYFRAMEVIEWUNDO_H
|
|
|
|
|
|
class KeyframeViewUndo
|
|
{
|
|
public:
|
|
KeyframeViewUndo();
|
|
};
|
|
|
|
#endif // KEYFRAMEVIEWUNDO_H
|