Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9017a91586ec
Choose a base ref
...
head repository: ngscopeclient/scopehal-apps
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1e1a9e7f102
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 27, 2020

  1. Copy the full SHA
    d1e1a9e View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 src/glscopeclient/InstrumentConnectionDialog.cpp
3 changes: 3 additions & 0 deletions src/glscopeclient/InstrumentConnectionDialog.cpp
Original file line number Diff line number Diff line change
@@ -46,6 +46,7 @@ InstrumentConnectionDialog::InstrumentConnectionDialog()
{
add_button("OK", Gtk::RESPONSE_OK);
add_button("Cancel", Gtk::RESPONSE_CANCEL);
set_default_response(Gtk::RESPONSE_OK);

get_vbox()->pack_start(m_grid, Gtk::PACK_EXPAND_WIDGET);

@@ -81,6 +82,8 @@ InstrumentConnectionDialog::InstrumentConnectionDialog()
m_grid.attach_next_to(m_pathEntry, m_pathLabel, Gtk::POS_RIGHT, 1, 1);

m_pathEntry.set_size_request(250, 1);

m_pathEntry.set_activates_default(true);

show_all();
}