/[svn]/gigedit/trunk/src/gigedit/mainwindow.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/mainwindow.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3160 by schoenebeck, Mon May 8 21:31:45 2017 UTC revision 3174 by schoenebeck, Wed May 10 23:10:37 2017 UTC
# Line 914  void MainWindow::updateMacroMenu() { Line 914  void MainWindow::updateMacroMenu() {
914          );          );
915          menuMacro->append(*item);          menuMacro->append(*item);
916          item->set_accel_path("<Macros>/macro_" + ToString(iMacro));          item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
917            Glib::ustring comment = macro.comment();
918            if (!comment.empty())
919                item->set_tooltip_text(comment);
920      }      }
921      // if there are no macros configured at all, then show a dummy entry instead      // if there are no macros configured at all, then show a dummy entry instead
922      if (m_macros.empty()) {      if (m_macros.empty()) {
# Line 3870  void MainWindow::paste_copied_dimrgn() { Line 3873  void MainWindow::paste_copied_dimrgn() {
3873    
3874  void MainWindow::adjust_clipboard_content() {  void MainWindow::adjust_clipboard_content() {
3875      MacroEditor* editor = new MacroEditor();      MacroEditor* editor = new MacroEditor();
3876      editor->setMacro(&m_serializationArchive);      editor->setMacro(&m_serializationArchive, true);
3877      editor->show();      editor->show();
3878  }  }
3879    

Legend:
Removed from v.3160  
changed lines
  Added in v.3174

  ViewVC Help
Powered by ViewVC