Undo is a command in many computer programs. It erases the last change done to the document reverting it to an older state. In some more advanced programs such as graphic processing, undo will negate the last command done to the file being edited.

learn more… | top users | synonyms

0
votes
0answers
12 views

How do I implement Undo in a coloring app, which uses RenderTexture

My app uses RenderTexture begin(), visit(), end() methods to draw on a canvas(a render texture). Now, how do I implement Undo feature for 1-5-steps. In my game update loop, Calculate touch and prev ...
0
votes
0answers
9 views

Undo not working in any application

My Ctrl+Z shortcut (used to undo text) is not working in any application of my computer. I have windows 7 installed. How can I solve this problem?
0
votes
1answer
34 views

Undo a git merge, keep commits that came later

I've stumbled upon this problem with my repo: I have the following structure of my branch tree: (branch) a - b - c - d - e - f - g / / (master) 1 - 2 - 3 - 4 - 5 ...
1
vote
2answers
25 views

Undo DbContext.Add()

I have the problem, that I've added a entity to my DbContext using _db.Article.Add(artícle), but want to UNDO this before I'm executing _db.SaveChanges. I haven't found anything, but I tried to use ...
0
votes
0answers
18 views

Eclipse reverts all changes to file on keypress, undo not possible!! WTF?

somehow I just pressed some key or key combination in eclipse (android development) and eclipse suddenly restored the previous version of the file I was working on. CTRL Z/Y does not help. Do I have ...
-3
votes
0answers
4 views

How to change a Facebook tester account back to a regular account [closed]

A couple years ago, I turned my Facebook account into a tester account. How can I turn that account back into a regular account? It looks like now you can generate tester accounts through an app's ...
0
votes
1answer
42 views

Destroying Canvas

Thanks for the great work! I'm trying to accomplish undo/redo. I'm using loadFromJSON(...) to re-build the canvas from the canvas states I've stored in an array. Basically, my idea is to destroy the ...
-3
votes
0answers
36 views

How the undobar works? [closed]

I use the libary from github But i am comfused about how it works? Does it frist mark the sign field 'deleted' to 'true' and then if the user click the undo btn it change back again? Or wait for 5s ...
0
votes
1answer
56 views

git “local changes checked into the index but not commited”

I edited files on home desktop and pushed to bitbucket.org as well as uploading to my test website. I then pulled from bitbucket.org to my laptop. It told me I needed to merge files but I did not ...
0
votes
0answers
21 views

javascript modify document without getting previous state stored to undo buffer

I wonder, Is it possible to modify a, let say, iframe inner document without having its previous state saved on undo buffer. I have a little WYSIWIG editor, which removes unsupported formatting from ...
0
votes
0answers
67 views

How to undo a “Get Latest Version” on TFS

I'm using TFS with VS2008 and VS2010 and in the TFS collection I have several projects. I've mapped the TFS root to a local drive to preserve the TFS folder structure and I've done a Get Latests of ...
0
votes
0answers
15 views

How can I undo a package rename in Pydev for Eclipse, or fix the import errors the rename caused?

The package was originally titled 'default', but I tried to change the name to 'Synthesizer'. However, this caused a problem because 'Synthesizer' was the name of a class in the package, so I changed ...
0
votes
0answers
38 views

How to Undo/Redo

I need to write undo/redo function for a complex object like below. class DataContainer implements Serializable{ private PublicationType type; private HashMap<Enum, String> fields; ...
3
votes
3answers
91 views

DbContext discard changes without disposing

I have an desktop client application that uses modal windows to set properties for hierarchical objects. Since this is a client application and access to the DbContext is not threaded, I use a ...
0
votes
1answer
46 views

Is it possible to undo an action done by a batch file?

The question is as the title says. I made a flawed move when moving a selection of files using a batch... It's too late now as I closed it accidentally, but for future reference I'd like the ...
0
votes
1answer
39 views

vim: undofile indepentdent of the vim version

I'm using the vim 7.3 feature undofile the following way: if version >= 703 set undofile set undodir=$HOME/.vim/undo set undolevels=1000 set undoreload=10000 endif I am using the same ...
1
vote
0answers
56 views

In Chrome undo does not work properly for input element after contents changed programmatically

In Chrome, I noticed that undo does not work properly for input element after the contents of the element has been changed programmatically. Although I get different behaviours for different browsers, ...
1
vote
2answers
59 views

Git: how to quickly undo staged and unstaged changes in git

What's the quickest way to undo changes (staged and unstaged) in Git? Both files unstaged. $ git status -s M file1.txt # unstaged ?? oops.txt # unstaged One file staged, one file unstaged. $ git ...
0
votes
2answers
38 views

win32api restore file from recyclebin using SHFileStruct

I'm using win 32 api to built explore is the same window. I can delete file to recycle bin. Now, I want to undo files which were deleted to recycle bin. What am I doing now? please help me. Thanks
3
votes
5answers
307 views

How to handle touch outside the view in Android?

I've found implementation of "Undo Bar" used in Gmail application for Android. "UndoBar" is basically a View that is displayed on top of the layout. Unfortunately it's not complete - it has no ...
1
vote
3answers
50 views

How to undo “hg qnew”?

I issued hg qnew without realizing that it includes any outstanding changes into the patch. I'd like to back that out and pick only specific changes using hg qrecord. How can I undo qnew?
0
votes
1answer
51 views

WPF ComboBox Undo Exception on Ctrl+Z (with Focus on SelectionChanged), Why?

Well, someone can tell me why this exception occurs in these conditions? Test Window: <Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
1answer
92 views

Undo/Redoing adjustments to whole image (Android)

Note: Please bear with me, this (imho) is not a duplicate of the dozen questions asking about undoing in paint/draw scenarios. Background: I've been developing an image processing application, ...
0
votes
0answers
31 views

Handiling Undo in Content Editable Div

I was trying to design a editor using content Editable DIV.I want to handle the undo option (ctrl+z).I am able to listen to event.But i found that IE handles this key and undoes only the content we ...
0
votes
0answers
68 views

UIButton Undo touchesBegan

I want to establish a Undo button, for that I have created an image (_Mini) equal to the main image to paint. Then I created a method to replace undo the last stroke, the previous image .... the ...
0
votes
0answers
66 views

Undo / Redo don't is fully usable

I try to make undo redo functions but when I click undo or redo buttons the function is available just for freehand. I want to undo oval, rectangle, line not just freehand. This is my code from ...
2
votes
3answers
40 views

How to undo all added files in mercurial

Say I type hg add in mercurial and there a bunch of untracked files in my working directory that are not ignored. What is the easiest way to un-add all those files without explicitly typing the name ...
0
votes
0answers
70 views

How can I implement UNDO/REDO?

Hi I want to implement Undo/Redo function in my paint app. FirstActivity.java imageViewUndo = (ImageView)this.findViewById(R.id.imageViewUndo); imageViewUndo.setOnClickListener(new ...
0
votes
2answers
112 views

django-reversion undo feature - recovering multiple objects

I'm trying to implement 'undo' feature in django project with django-reversion in a case when user can accidentally modify multiple objects. Using admin panel won't work as one has to revert objects ...
2
votes
2answers
72 views

Git undo partial changes to a file

How do I undo a part of the changes applied to a file that happened a while a go. I have the following commits and the accidental changes happened between A and B to 'file.txt' ...--A--B--... I ...
1
vote
2answers
84 views

Stuck at creating undo functionality in C#/XNA Game

So I want a undo functionality for a MapEditor I am working on in my game. I got it partly working. When I click on the map, it stores both the old and the new tile in seperate lists. When I press ...
0
votes
1answer
99 views

Git: temporarily reverting pushed commit(s)

Say, you've pushed some commits and pulled them into production, in your server's webroot, for example. And then something goes wrong. Clearly, most often what you want to do is temporarily revert the ...
1
vote
0answers
84 views

UndoManager manually add UndoableEdit to make it work with JTabbedPane

Edit : please, have a look at the end of the post... To begin, please excuse me for my bad english... I'm trying to make a text editor in Java, using a JTabbedPane to edit multiple files. I have ...
2
votes
3answers
86 views

Is fast (repeated) undo possible in emacs?

I use emacs and I have a problem with it's undo. (Sorry, maybe this is a stupid question, but I did not find anything about it in the internet, whilst it should be a basic functionality of any ...
5
votes
2answers
94 views

How to prevent Emacs from setting an undo boundary?

I've written an Emacs Lisp function which calls a shell command to process a given string and return the resulting string. Here is a simplified example which just calls tr to convert text to ...
1
vote
4answers
86 views

Disable undo/redo in Cocoa app

I've implemented undo/redo the standard way (NSUndoManager) but can't figure out how I disable undo/redos when my app is in a specific state. Users draw things in my app and when what they've drawn ...
-1
votes
1answer
105 views

Drawing app. How to create undo function in action script 3?

Can anyone show me how can I make undo function? so this is my current action script. I cant figure how to do it and i see some example in some web site, the action script is to long to under stand. ...
0
votes
1answer
259 views

Read-Only and undo properties MS Access (VBA)

I have been surfing the wed looking for an answer to what I thought it was a pretty simple question, for a newbie like me.. But havent found any so here I am!. To keep things simple, i'll attach the ...
3
votes
1answer
135 views

Undo previously seeded data in Rails

I have seeded a row of data to my table by editing db/seed.rb file and executing rake db:seed command. Unknowingly, I put some wrong information in to that row. So I want to remove the previously ...
0
votes
1answer
66 views

Run a VBA function every time 'Undo' is clicked

Is it possible to run a VBA function (Word 2007) every time the user clicks 'undo' (or crtl+z)? Thanks.
2
votes
1answer
86 views

Don't add changes made via VBA to the undo history

I have a set of Word macro's that format documents that are sent to from an external source. Usually there are a lot of changes made to the document, all of which are recorded in the undo history, ...
0
votes
1answer
174 views

Action script 3 drawing app undo and redo function

Can anyone show me how can I make undo and redo function? so this is my current action script. I cant figure how to do it and i see some example in some web site, the action script is to long to under ...
0
votes
2answers
138 views

Drawing app undo and redo function action script 3

Can anyone show me how can I make undo and redo function? so this is my current action script. I cant figure how to do it and i see some example in some web site, the action script is to long to under ...
0
votes
1answer
38 views

hg undo overwrite

Accidentally used > instead of >> ! The overwritten file was added by hg add two days ago but was never commited. Can hg undo that for me (maybe by magic) ?
0
votes
0answers
40 views

Slickgrid Undo and Sorting fails

Greeting friends, I used slickgrid editCommandHandler for undo and sorting together. On sort the slickgrid is unable to undo correctly the field which I originally changed. Has anyone else also ...
0
votes
0answers
77 views

Android TextWatcher saving batches of similar changes for undo/redo

I am trying to make snapshots of an EditText content everytime after a batch of similar changes made to it. Like for example: when I do several consecutive deletes on consecutive/overlapping text ...
0
votes
3answers
88 views

Undo CGContext lines

I know this kind of post was asked a lot of time, but I searched a lot on Google and on this site too, without finding any solution, that's why I'm posting this question. I would like to undo my ...
0
votes
1answer
71 views

Core data : how to undo operations once managed objects are saved with context

I am trying to implement downloading of bulk data from several tables on the server. In my case there are 16 tables. For all these tables I will be firing 10 requests to the server. This means I have ...
1
vote
1answer
64 views

SVN Backout but keep changes locally

With SVN command line, whats the best way to back out committed changes but to retain them on your local revision? i.e. I want the final state of the remote repository to be what it was before the ...
1
vote
1answer
148 views

Undo behavior on textField value based on value verification after focus lost

I post new question based on this previously code posted here (Filter users values on TextField input after a BindDirectional strategy betwen a Slider and min/max TextField) My goal is simple, what ...

1 2 3 4 5 7