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

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

[Octave-bug-tracker] [bug #62266] uibuttongroup error from loading ofig


From: Rik
Subject: [Octave-bug-tracker] [bug #62266] uibuttongroup error from loading ofig
Date: Sat, 9 Apr 2022 12:04:06 -0400 (EDT)

Update of bug #62266 (project octave):

                  Status:                    None => Confirmed              
                 Release:                   6.3.0 => dev                    
        Operating System:       Microsoft Windows => Any                    

    _______________________________________________________

Follow-up Comment #1:

Confirmed.  My testing was on the development branch on a Linux machine so
this issue is not specific to an OS or Octave version.

The code I used for testing is:


% Create figure and panel on it
f = figure;
% Create a button group
gp = uibuttongroup (f, "Position", [ 0 0.5 1 1])
% Create a buttons in the group
b1 = uicontrol (gp, "style", "radiobutton", ...
"string", "Choice 1", ...
"Position", [ 10 150 100 50 ]);
b2 = uicontrol (gp, "style", "radiobutton", ...
"string", "Choice 2", ...
"Position", [ 10 50 100 30 ]);
% Create a button not in the group
b3 = uicontrol (f, "style", "radiobutton", ...
"string", "Not in the group", ...
"Position", [ 10 50 100 50 ]);

savefig mytst.ofig

close all

openfig mytst.ofig



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?62266>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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