Skip to content

Commit

Permalink
Merge branch 'main' of github.com:eclipse-sumo/sumo into Netedit_dev
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarezlopez committed Dec 20, 2024
2 parents 03c07d9 + 7306d9b commit 588986a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: documentation

on:
push: # run on push events in the docs subfolder
paths:
- 'docs/**'
paths:
- 'docs/**'
workflow_dispatch:
schedule:
- cron: '30 1 * * *' # daily at 01:30 UTC
Expand Down Expand Up @@ -45,6 +45,7 @@ jobs:
# checking external links
############################
external-link-check:
if: github.event_name != 'push'
runs-on: ubuntu-latest

steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/macos-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ jobs:
python3 build_config/version.py build_config/setup-traci.py ./setup.py
python3 -m build --wheel
- name: Running libsumo tests
run: |
python3 -m pip install -f tools/dist sumolib traci
python3 -m pip install -f python-wheels libsumo
cd tests
texttest -b ci -v ci -a complex.libsumo
# - name: Running libsumo tests
# run: |
# python3 -m pip install -f tools/dist sumolib traci
# python3 -m pip install -f python-wheels libsumo
# cd tests
# texttest -b ci -v ci -a complex.libsumo

- name: Compressing test results
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion src/netedit/frames/network/GNECrossingFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ GNECrossingFrame::JunctionInformation::JunctionInformation(GNECrossingFrame* cro
// Create frame for junction ID
FXHorizontalFrame* junctionIDFrame = new FXHorizontalFrame(getCollapsableFrame(), GUIDesignAuxiliarHorizontalFrame);
// create label
new FXLabel(junctionIDFrame, "", nullptr, GUIDesignLabelThickedFixed(100));
new FXLabel(junctionIDFrame, "Edited", nullptr, GUIDesignLabelThickedFixed(100));
// create text field and disable it
myTextFieldJunctionID = new FXTextField(junctionIDFrame, GUIDesignTextFieldNCol, this, MID_GNE_SELECT, GUIDesignTextField);
myTextFieldJunctionID->disable();
Expand Down
8 changes: 4 additions & 4 deletions tests/netedit/attributesEnum.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,12 +377,12 @@ class create:
edges = 1
priority = 2
width = 3
button = 10
button = 9

class createTLS:
edges = 1
width = 2
button = 10
button = 9

class inspect:
edges = 1
Expand Down Expand Up @@ -412,8 +412,8 @@ class inspectSelectionTLS:
linkIndex2 = 4
parameters = 7

clearEdges = 3
firstField = 4
useSelectedEdges = 3
firstField = 3


# TLS
Expand Down

0 comments on commit 588986a

Please sign in to comment.