Skip to content

Commit

Permalink
Add tooltip to the new SVN toolbar buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
eranif committed Feb 7, 2018
1 parent 0067db9 commit d9fcf13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Subversion2/subversion_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ void SubversionView::CreatGUIControls()
tb->AddSeparator();

// Common svn actions
tb->AddTool(XRCID("svn_update"), bmpLdr->LoadBitmap("pull"), _("Svn update"), wxITEM_NORMAL);
tb->AddTool(XRCID("svn_commit"), bmpLdr->LoadBitmap("git-commit"), _("Svn commit"), wxITEM_NORMAL);
tb->AddTool(XRCID("svn_revert"), bmpLdr->LoadBitmap("undo"), _("Svn revert"), wxITEM_NORMAL);
tb->AddTool(XRCID("svn_update"), _("Svn update"), bmpLdr->LoadBitmap("pull"), _("Svn update"));
tb->AddTool(XRCID("svn_commit"), _("Svn commit"), bmpLdr->LoadBitmap("git-commit"), _("Svn commit"));
tb->AddTool(XRCID("svn_revert"), _("Svn revert"), bmpLdr->LoadBitmap("undo"), _("Svn revert"));
tb->AddSeparator();
tb->AddTool(XRCID("svn_refresh"), _("Refresh View"), bmpLdr->LoadBitmap("debugger_restart"), _("Refresh View"));
tb->AddTool(XRCID("svn_info"), _("Svn Info"), bmpLdr->LoadBitmap("info"), _("Svn Info"));
Expand Down

0 comments on commit d9fcf13

Please sign in to comment.