octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #53276] GUI: undocked panes cannot be moved, o


From: Dan Sebald
Subject: [Octave-bug-tracker] [bug #53276] GUI: undocked panes cannot be moved, or resized along upper border
Date: Fri, 6 Apr 2018 13:16:45 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0

Follow-up Comment #90, bug #53276 (project octave):

With regards to KDE/Qt, I wonder if anything would happen if we changed


    if (m_start_gui)
      {
        m_workspace_model = new workspace_model ();
        m_status_bar = new QStatusBar ();
        m_command_window = new terminal_dock_widget (this);
        m_history_window = new history_dock_widget (this);
        m_file_browser_window = new files_dock_widget (this);
        m_doc_browser_window = new documentation_dock_widget (this);
        m_editor_window = create_default_editor (this);
        m_variable_editor_window = new variable_editor (this);
        m_workspace_window = new workspace_view (this);
      }


to


    if (m_start_gui)
      {
        m_workspace_model = new workspace_model (0);
        m_status_bar = new QStatusBar (0);
        m_command_window = new terminal_dock_widget (0);
        m_history_window = new history_dock_widget (0);
        m_file_browser_window = new files_dock_widget (0);
        m_doc_browser_window = new documentation_dock_widget (0);
        m_editor_window = create_default_editor (0);
        m_variable_editor_window = new variable_editor (0);
        m_workspace_window = new workspace_view (0);
      }


and then as a first step call "make_widget()" on these.  Perhaps KDE/Qt would
behave better if the windows were initially top-level full decoration rather
than docked widgets.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?53276>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]